Skip to content

Commit

Permalink
Fix IO print test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
pcnfernando committed Sep 11, 2020
1 parent d535d3a commit 2a583d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public void testFormatIntArray() {
fArgs.add(0, arr);
BValue[] args = {new BString("%s"), fArgs};
BValue[] returns = BRunUtil.invoke(compileResult, "testSprintf", args);
Assert.assertEquals(returns[0].stringValue(), "[111, 222, 333]");
Assert.assertEquals(returns[0].stringValue(), "[111,222,333]");
}

@Test
Expand Down

0 comments on commit 2a583d0

Please sign in to comment.