Skip to content

Commit c66b7ae

Browse files
committed
fix incorrect assert in test
1 parent 997e28a commit c66b7ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qDup/src/test/java/io/hyperfoil/tools/qdup/cmd/impl/SetStateTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void return_set(){
3131
Object obj = spyContext.getState().get("test");
3232
assertTrue(obj instanceof Json);
3333
Json json = (Json) obj;
34-
assertFalse(json.isArray());
34+
assertTrue(json.isArray());
3535
assertEquals(2,json.size());
3636
}
3737

0 commit comments

Comments
 (0)