Skip to content

Commit 3cc70a3

Browse files
committed
Fixed precision of int division in junit tests
1 parent 845aaf6 commit 3cc70a3

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/grammar/BinaryArithTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2018, Oracle and/or its affiliates.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates.
33
* Copyright (c) 2013, Regents of the University of California
44
*
55
* All rights reserved.
@@ -110,7 +110,7 @@ public void complexBinaryArith2() {
110110
"d = 2 ** 4\n" + //
111111
"e = 2.5 ** 3.0\n" + //
112112
"print(a,b,c,d,e)\n";
113-
assertPrints("1.0734391914109869e+17 1.0734391914109868e+18 -821361754992.0 16 15.625\n", source);
113+
assertPrints("1.0734391914109867e+17 1.0734391914109868e+18 -821361754992.0 16 15.625\n", source);
114114
}
115115

116116
@Test

0 commit comments

Comments
 (0)