diff options
author | Brett Cannon <brett@python.org> | 2024-01-16 19:36:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-16 19:36:41 (GMT) |
commit | 03f78397039760085b8ec07969835c89610bbc6d (patch) | |
tree | 4a7315710fb3ca4fae694d5cb05697e4cfc0b0b8 /Lib/test/test_userlist.py | |
parent | 3d5df54cdc1e946bd953bc9906da5abf78a48357 (diff) | |
download | cpython-03f78397039760085b8ec07969835c89610bbc6d.zip cpython-03f78397039760085b8ec07969835c89610bbc6d.tar.gz cpython-03f78397039760085b8ec07969835c89610bbc6d.tar.bz2 |
GH-114013: fix setting `HOSTRUNNER` for `Tools/wasm/wasi.py` (GH-114097)
Also fix tests found failing under a pydebug build of WASI thanks to `make test` working due to this change.
Diffstat (limited to 'Lib/test/test_userlist.py')
-rw-r--r-- | Lib/test/test_userlist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_userlist.py b/Lib/test/test_userlist.py index 76d2537..312702c 100644 --- a/Lib/test/test_userlist.py +++ b/Lib/test/test_userlist.py @@ -69,7 +69,7 @@ class UserListTest(list_tests.CommonTest): # Decorate existing test with recursion limit, because # the test is for C structure, but `UserList` is a Python structure. - test_repr_deep = support.infinite_recursion()( + test_repr_deep = support.infinite_recursion(25)( list_tests.CommonTest.test_repr_deep, ) |