Skip to content

Commit 88afc02

Browse files
Fix test_recursion_error_during_traceback in test_traceback.
1 parent 06145a6 commit 88afc02

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_traceback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def test_recursion_error_during_traceback(self):
206206
sys.setrecursionlimit(15)
207207
208208
def f():
209-
ref(lambda: 0, [])
209+
ref(lambda: 0, ord)
210210
f()
211211
212212
try:

0 commit comments

Comments
 (0)