File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 99
1010from bpython .test import mock , unittest
1111
12+
1213@unittest .skipUnless (has_watchdog , "watchdog required" )
1314class TestModuleChangeEventHandler (unittest .TestCase ):
1415
Original file line number Diff line number Diff line change @@ -162,7 +162,6 @@ def test_func_name_method_issue_479(self):
162162 self .assertTrue (self .repl .get_args ())
163163 self .assertEqual (self .repl .current_func .__name__ , expected_name )
164164
165-
166165 def test_syntax_error_parens (self ):
167166 for line in ["spam(]" , "spam([)" , "spam())" ]:
168167 self .set_input_line (line )
@@ -329,7 +328,8 @@ def test_fuzzy_global_complete(self):
329328 self .assertTrue (hasattr (self .repl .matches_iter , 'matches' ))
330329 self .assertEqual (self .repl .matches_iter .matches ,
331330 ['UnboundLocalError(' , '__doc__' ] if not py3 else
332- ['ChildProcessError(' , 'UnboundLocalError(' , '__doc__' ])
331+ ['ChildProcessError(' , 'UnboundLocalError(' ,
332+ '__doc__' ])
333333
334334 # 2. Attribute tests
335335 def test_simple_attribute_complete (self ):
You can’t perform that action at this time.
0 commit comments