You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/builtins/modules/FileDescriptorConversionNodeTests.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -99,13 +99,13 @@ public void longFitsInt() {
99
99
100
100
@Test
101
101
publicvoidlongTooBig() {
102
-
expectPythonMessage("OverflowError: Python int too large to convert to int");
102
+
expectPythonMessage("OverflowError: Python int too large to convert to Java int");
103
103
call(1L << 40);
104
104
}
105
105
106
106
@Test
107
107
publicvoidlongTooSmall() {
108
-
expectPythonMessage("OverflowError: Python int too large to convert to int");
108
+
expectPythonMessage("OverflowError: Python int too large to convert to Java int");
109
109
call(-1L << 40);
110
110
}
111
111
@@ -116,13 +116,13 @@ public void pintFitsInt() {
116
116
117
117
@Test
118
118
publicvoidpintTooBig() {
119
-
expectPythonMessage("OverflowError: Python int too large to convert to int");
119
+
expectPythonMessage("OverflowError: Python int too large to convert to Java int");
0 commit comments