Skip to content

Commit b6494ff

Browse files
committed
Fix tests with pypy
1 parent 20241ea commit b6494ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/test/test_interpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def gfunc():
5050

5151
global_not_found = "name 'gfunc' is not defined"
5252

53-
if (3, 13) <= sys.version_info[:2]:
53+
if (3, 13) <= sys.version_info[:2] or pypy:
5454
expected = (
5555
"Traceback (most recent call last):\n File "
5656
+ green('"<input>"')

0 commit comments

Comments
 (0)