Skip to content

Commit

Permalink
Fix unit itest
Browse files Browse the repository at this point in the history
  • Loading branch information
cgivre committed Aug 12, 2024
1 parent 0d8364b commit b570378
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ public void testBasicCTAS() throws Exception {
.buildSchema();

RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
.addRow("198.35.2.120", "ACCESSORIES")
.addRow("198.35.2.120", "STRATEGY")
.addRow("198.35.2.120", null)
.addRow("198.35.2.120", null)
.addRow("198.35.2.120", "STRATEGY")
.addRow("198.35.2.120", "ACCESSORIES")
.addRow("198.35.2.120", "NULL")
.build();
RowSetUtilities.verify(expected, results);
Expand Down

0 comments on commit b570378

Please sign in to comment.