Skip to content

Commit

Permalink
GH-1289: Fix whitespace in test
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell committed Dec 23, 2020
1 parent 73e1874 commit 19360e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ void routingWithSimpleConfirms() throws Exception {
SimpleRoutingConnectionFactory rcf = new SimpleRoutingConnectionFactory();
rcf.setDefaultTargetConnectionFactory(this.connectionFactoryWithConfirmsEnabled);
this.templateWithConfirmsEnabled.setConnectionFactory(rcf);
assertThat(this.templateWithConfirmsEnabled.<Boolean>invoke(template -> {
assertThat(this.templateWithConfirmsEnabled.<Boolean>invoke(template -> {
template.convertAndSend("", ROUTE2, "foo");
template.waitForConfirmsOrDie(10_000);
return true;
})).isTrue();
})).isTrue();
}

private void assertMessageCountEquals(long wanted) throws InterruptedException {
Expand Down

0 comments on commit 19360e0

Please sign in to comment.