Skip to content

Commit

Permalink
Fix review issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomiej.zylinski committed Jun 18, 2024
1 parent ec94d7b commit 0f1de5e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.9'

volumes:
nats-storage:
driver: local
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import java.time.LocalDateTime;
import java.time.ZoneOffset;

import org.assertj.core.api.Assertions;
import otter.jet.AbstractIntegrationTest;
import otter.jet.JetStreamContainerInitializer;
import otter.jet.JetStreamUtils;
Expand Down Expand Up @@ -50,7 +49,7 @@ public void shouldReadMessagesSentInPlaintext() {
await()
.untilAsserted(
() ->
Assertions.assertThat(readerService.filter(subjectFilter, typeFilter, 0, 10, ""))
assertThat(readerService.filter(subjectFilter, typeFilter, 0, 10, ""))
.usingRecursiveFieldByFieldElementComparator(
ComparisonConfiguration.configureReadMessageComparison())
.contains(
Expand Down

0 comments on commit 0f1de5e

Please sign in to comment.