Skip to content

Commit

Permalink
update unsorted test
Browse files Browse the repository at this point in the history
  • Loading branch information
wusteven815 committed Mar 25, 2024
1 parent c313b2d commit df5b618
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,14 @@ public void notFound() {

@Test
public void unsorted() {
final Table t = newTable(intCol("num", 3, 1, 2, 1, 3, 2));
final Table t = newTable(intCol("num", 3, 1, 1, 2, 3, 1, 1, 2));
assertSeekPositionAllRows(t, 1,
new int[] {1, 2, 5, 5, 5, 6, 1, 1},
new int[] {6, 6, 1, 2, 2, 2, 5, 6});
assertSeekPositionAllRows(t, 2,
new int[] {2, 2, 5, 5, 5, 2},
new int[] {5, 5, 5, 2, 2, 2});
}
new int[] {3, 3, 3, 7, 7, 7, 7, 3},
new int[] {6, 6, 1, 2, 2, 2, 5, 6});
assertSeekPositionAllRows(t, 3,
new int[] {4, 4, 4, 4, 0, 0, 0, 0},
new int[] {6, 6, 1, 2, 2, 2, 5, 6});
}

Check failure on line 312 in ClientSupport/src/test/java/io/deephaven/clientsupport/gotorow/SeekRowTest.java

View workflow job for this annotation

GitHub Actions / quick

[Task :ClientSupport:compileTestJava FAILED] reached end of file while parsing

0 comments on commit df5b618

Please sign in to comment.