Skip to content

Commit

Permalink
update ReadTest
Browse files Browse the repository at this point in the history
  • Loading branch information
jt2594838 committed Nov 13, 2018
1 parent 68afac7 commit 9d02525
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,17 +123,17 @@ public void queryWithTwoSeriesTimeValueFilterCrossTest() throws IOException {
int cnt = 1;
while (dataSet.hasNext()) {
RowRecord r = dataSet.next();
// if (cnt == 1) {
// assertEquals(r.getTimestamp(), 1480562618973L);
// } else if (cnt == 2) {
// assertEquals(r.getTimestamp(), 1480562618974L);
// } else if (cnt == 3) {
// assertEquals(r.getTimestamp(), 1480562618975L);
// }
if (cnt == 1) {
assertEquals(r.getTimestamp(), 1480562618970L);
} else if (cnt == 2) {
assertEquals(r.getTimestamp(), 1480562618971L);
} else if (cnt == 3) {
assertEquals(r.getTimestamp(), 1480562618973L);
}
System.out.println(r);
cnt++;
}
assertEquals(cnt, 5);
assertEquals(cnt, 7);
}

@Test
Expand Down

0 comments on commit 9d02525

Please sign in to comment.