##// END OF EJS Templates
Update IPython/lib/tests/test_pretty.py...
Lumír 'Frenzy' Balhar -
Show More
@@ -142,7 +142,7 b' def test_pprint_heap_allocated_type():'
142 142 """
143 143 module_name = "xxlimited" if sys.version_info < (3, 10) else "xxlimited_35"
144 144 expected_output = (
145 "xxlimited.Null" if sys.version_info < (3, 11) else "xxlimited_35.Null"
145 "xxlimited.Null" if sys.version_info < (3, 10, 6) else "xxlimited_35.Null"
146 146 )
147 147 xxlimited = pytest.importorskip(module_name)
148 148 output = pretty.pretty(xxlimited.Null)
General Comments 0
You need to be logged in to leave comments. Login now