File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ def test_launch_uuid_print(mock_client_init):
214214 assert int (result ) == 0 , "Exit code should be 0 (no errors)"
215215 expect (mock_client_init .call_count == 1 )
216216 expect (mock_client_init .call_args_list [0 ][1 ]["launch_uuid_print" ] == print_uuid )
217- expect (mock_client_init .call_args_list [0 ][1 ]["print_output" ] is None )
217+ expect (mock_client_init .call_args_list [0 ][1 ]["print_output" ] is OutputType . STDOUT )
218218 assert_expectations ()
219219
220220
@@ -248,7 +248,7 @@ def test_no_launch_uuid_print(mock_client_init):
248248 assert int (result ) == 0 , "Exit code should be 0 (no errors)"
249249 expect (mock_client_init .call_count == 1 )
250250 expect (mock_client_init .call_args_list [0 ][1 ]["launch_uuid_print" ] is False )
251- expect (mock_client_init .call_args_list [0 ][1 ]["print_output" ] is None )
251+ expect (mock_client_init .call_args_list [0 ][1 ]["print_output" ] is OutputType . STDOUT )
252252 assert_expectations ()
253253
254254
You can’t perform that action at this time.
0 commit comments