Skip to content

Commit 23a35d9

Browse files
committed
Add non-small int test arg to test_misc.py::PointerEquality_Primtive.
1 parent bb22513 commit 23a35d9

File tree

1 file changed

+2
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src/tests/cpyext

1 file changed

+2
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_misc.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
22
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
#
44
# The Universal Permissive License (UPL), Version 1.0
@@ -194,6 +194,7 @@ def compile_module(self, name):
194194
lambda: (
195195
(True, lambda arg0, *args: arg0),
196196
(False, lambda arg0, *args: arg0),
197+
(1000, lambda arg0, *args: arg0),
197198
(10, lambda arg0, *args: arg0),
198199
(10.0, lambda arg0, *args: arg0),
199200
(float('nan'), lambda arg0, *args: arg0),

0 commit comments

Comments
 (0)