Skip to content

Commit 2d0763e

Browse files
committed
GH-1289: Fix whitespace in test
1 parent e382f67 commit 2d0763e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-rabbit/src/test/java/org/springframework/amqp/rabbit/core/RabbitTemplatePublisherCallbacksIntegrationTests2.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,11 @@ void routingWithSimpleConfirms() throws Exception {
133133
SimpleRoutingConnectionFactory rcf = new SimpleRoutingConnectionFactory();
134134
rcf.setDefaultTargetConnectionFactory(this.connectionFactoryWithConfirmsEnabled);
135135
this.templateWithConfirmsEnabled.setConnectionFactory(rcf);
136-
assertThat(this.templateWithConfirmsEnabled.<Boolean>invoke(template -> {
136+
assertThat(this.templateWithConfirmsEnabled.<Boolean>invoke(template -> {
137137
template.convertAndSend("", ROUTE2, "foo");
138138
template.waitForConfirmsOrDie(10_000);
139139
return true;
140-
})).isTrue();
140+
})).isTrue();
141141
}
142142

143143
private void assertMessageCountEquals(long wanted) throws InterruptedException {

0 commit comments

Comments
 (0)