From 4f26796cf368d24edadbb3d62e052e6aa4ddc820 Mon Sep 17 00:00:00 2001 From: Ben Greiner Date: Mon, 20 Dec 2021 20:04:08 +0100 Subject: [PATCH] fix xxlimited_35 import name --- IPython/lib/tests/test_pretty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/lib/tests/test_pretty.py b/IPython/lib/tests/test_pretty.py index 9ce17f4b701..77941f18daa 100644 --- a/IPython/lib/tests/test_pretty.py +++ b/IPython/lib/tests/test_pretty.py @@ -127,7 +127,7 @@ def test_pprint_heap_allocated_type(): if sys.version_info < (3, 10): import xxlimited else: - import xxlimited_35 + import xxlimited_35 as xxlimited output = pretty.pretty(xxlimited.Null) nt.assert_equal(output, 'xxlimited.Null')