Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedabu98 committed Oct 1, 2024
1 parent a930233 commit 7a8f305
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ public void testStreamingWrite() {
.getSnapshots();
// verify that 2 snapshots are created (one per triggering interval)
PCollection<Long> snapshots = output.apply(Count.globally());
PAssert.that(snapshots).containsInAnyOrder(1L, 1L);
PAssert.that(snapshots).containsInAnyOrder(2L);
testPipeline.run().waitUntilFinish();

List<Record> writtenRecords = ImmutableList.copyOf(IcebergGenerics.read(table).build());
Expand Down

0 comments on commit 7a8f305

Please sign in to comment.