Skip to content

Commit

Permalink
Fix assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniil Zulin committed Jan 20, 2025
1 parent a610592 commit 8bfd535
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void testPredefinedConsumersChangefeedEntity() {
assertThat(entitySchema.getChangefeeds().get(0).getRetentionPeriod()).isEqualTo(Duration.ofHours(24));
assertThat(entitySchema.getChangefeeds().get(0).isVirtualTimestamps()).isFalse();
assertThat(entitySchema.getChangefeeds().get(0).isInitialScan()).isFalse();
assertThat(entitySchema.getChangefeeds().get(0).getConsumers()).containsExactly("consumer1", "consumer2");
assertThat(entitySchema.getChangefeeds().get(0).getConsumers()).containsExactlyInAnyOrder("consumer1", "consumer2");
}

private static <T> Schema<T> schemaOf(Class<T> entityType) {
Expand Down

0 comments on commit 8bfd535

Please sign in to comment.