Skip to content

Commit

Permalink
Update engine/table/src/test/java/io/deephaven/engine/table/impl/sele…
Browse files Browse the repository at this point in the history
…ct/WhereFilterFactoryTest.java

Co-authored-by: Colin Alworth <[email protected]>
  • Loading branch information
georgecwan and niloc132 authored Dec 22, 2023
1 parent 8eda1b9 commit f811e63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public void testBigDecimal() {
assertEquals(1, idx.size());
assertEquals(b, DataAccessHelpers.getColumn(t, 0).get(idx.firstRowKey()));
// match one of two items
f = WhereFilterFactory.getExpression("BigDecimal in " + a + ", " + b + "");
f = WhereFilterFactory.getExpression("BigDecimal in " + a + ", " + b);
f.init(t.getDefinition());
assertEquals(MatchFilter.class, f.getClass());
idx = f.filter(t.getRowSet().copy(), t.getRowSet(), t, false);
Expand Down

0 comments on commit f811e63

Please sign in to comment.