Skip to content

Commit 82f47b7

Browse files
committed
Fix junit test for round()
1 parent bc62400 commit 82f47b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/builtin/BuiltinFunctionTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ public void anyTest() {
5959

6060
@Test
6161
public void roundTest0() {
62-
String source = "x = round(2.5)\n" + "print(x)";
63-
assertPrints("3\n", source);
62+
String source = "x = round(3.5)\n" + "print(x)";
63+
assertPrints("4\n", source);
6464
}
6565

6666
@Test

0 commit comments

Comments
 (0)