We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c830c75 commit 27b9493Copy full SHA for 27b9493
bpython/test/test_repl.py
@@ -332,7 +332,8 @@ def test_fuzzy_global_complete(self):
332
self.assertTrue(self.repl.complete())
333
self.assertTrue(hasattr(self.repl.matches_iter, 'matches'))
334
self.assertEqual(self.repl.matches_iter.matches,
335
- ['UnboundLocalError(', '__doc__'])
+ ['UnboundLocalError(', '__doc__'] if not py3 else
336
+ ['ChildProcessError(', 'UnboundLocalError(', '__doc__'])
337
338
# 2. Attribute tests
339
def test_simple_attribute_complete(self):
0 commit comments