diff --git a/ClientSupport/src/test/java/io/deephaven/clientsupport/gotorow/SeekRowTest.java b/ClientSupport/src/test/java/io/deephaven/clientsupport/gotorow/SeekRowTest.java index 6aa6bce154c..9137774df90 100644 --- a/ClientSupport/src/test/java/io/deephaven/clientsupport/gotorow/SeekRowTest.java +++ b/ClientSupport/src/test/java/io/deephaven/clientsupport/gotorow/SeekRowTest.java @@ -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}); }