Skip to content
This repository was archived by the owner on Jan 19, 2022. It is now read-only.

Fix typo in the exception text #561

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void tearDown() throws Exception {
this.simpleMessageListenerContainer.stop(countDownLatch::countDown);

if (!countDownLatch.await(15, TimeUnit.SECONDS)) {
throw new Exception("Couldn't stop container withing 15 seconds");
throw new Exception("Couldn't stop container within 15 seconds");
}
}
}
Expand Down