File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,10 @@ def test_play_virtual(self):
49
49
50
50
def test_play_virtual_verbose (self ):
51
51
sys .argv = self .baseargs + ["-v" , self .logfile ]
52
- with unittest .mock .patch (' sys.stdout' , new_callable = io .StringIO ) as mock_stdout :
52
+ with unittest .mock .patch (" sys.stdout" , new_callable = io .StringIO ) as mock_stdout :
53
53
can .player .main ()
54
- self .assertIn (' 09 08 07 06 05 04 03 02' , mock_stdout .getvalue ())
55
- self .assertIn (' 05 0c 00 00 00 00 00 00' , mock_stdout .getvalue ())
54
+ self .assertIn (" 09 08 07 06 05 04 03 02" , mock_stdout .getvalue ())
55
+ self .assertIn (" 05 0c 00 00 00 00 00 00" , mock_stdout .getvalue ())
56
56
self .assertEqual (self .mock_virtual_bus .send .call_count , 2 )
57
57
self .assertEqual (self .MockSleep .call_count , 2 )
58
58
self .assertSuccessfullCleanup ()
You can’t perform that action at this time.
0 commit comments