Skip to content

Commit eaa4904

Browse files
committed
issues/650: checkstyle fix
1 parent fea766c commit eaa4904

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

api/src/test/java/io/kafbat/ui/service/MessagesServiceTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ void sendMessageWithProtobufAnyType() {
238238
createTopicWithCleanup(new NewTopic(testTopic, 5, (short) 1));
239239

240240
StepVerifier.create(messagesService.sendMessage(cluster, testTopic, testMessage))
241-
.expectNextMatches(metadata -> metadata.topic().equals(testTopic) &&
242-
metadata.partition() == 0 &&
243-
metadata.offset() >= 0)
241+
.expectNextMatches(metadata -> metadata.topic().equals(testTopic)
242+
&& metadata.partition() == 0
243+
&& metadata.offset() >= 0)
244244
.verifyComplete();
245245
}
246246

0 commit comments

Comments
 (0)