Skip to content

Commit

Permalink
Fixing the flaky tests. (#15142) (#15155)
Browse files Browse the repository at this point in the history
Co-authored-by: Karan Kumar <[email protected]>
  • Loading branch information
LakshSingla and cryptoe authored Oct 14, 2023
1 parent 9cfba45 commit 6f6fc62
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1463,22 +1463,21 @@ public void testExternSelectWithMultipleWorkers() throws IOException
);
// adding result stage counter checks
if (isPageSizeLimited()) {
selectTester = selectTester.setExpectedCountersForStageWorkerChannel(
selectTester.setExpectedCountersForStageWorkerChannel(
CounterSnapshotMatcher
.with().rows(2, 0, 2).frames(1, 0, 1),
.with().rows(2, 0, 2),
1, 0, "input0"
).setExpectedCountersForStageWorkerChannel(
CounterSnapshotMatcher
.with().rows(2, 0, 2).frames(1, 0, 1),
.with().rows(2, 0, 2),
1, 0, "output"
);
selectTester = selectTester.setExpectedCountersForStageWorkerChannel(
).setExpectedCountersForStageWorkerChannel(
CounterSnapshotMatcher
.with().rows(0, 2, 0, 4).frames(0, 1, 0, 1),
.with().rows(0, 2, 0, 4),
1, 1, "input0"
).setExpectedCountersForStageWorkerChannel(
CounterSnapshotMatcher
.with().rows(0, 2, 0, 4).frames(0, 1, 0, 1),
.with().rows(0, 2, 0, 4),
1, 1, "output"
);
}
Expand Down

0 comments on commit 6f6fc62

Please sign in to comment.