Skip to content

Commit

Permalink
small fix on column communication tck
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed May 4, 2022
1 parent 68d163b commit 36d0487
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -194,7 +194,7 @@ public void shouldCreateInFromDocument() {
@Test
public void shouldCreateInFromNameValue() {
Column column = Column.of("name", Collections.singleton("Ada Lovelace"));
ColumnCondition condition = ColumnCondition.in("name", "Ada Lovelace");
ColumnCondition condition = ColumnCondition.in("name", Collections.singleton("Ada Lovelace"));
Assertions.assertNotNull(condition);
Assertions.assertEquals(Condition.IN, condition.getCondition());
Assertions.assertEquals(column, condition.getColumn());
Expand Down

0 comments on commit 36d0487

Please sign in to comment.