File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -750,9 +750,6 @@ def test_stop(self):
750
750
container_info = self .client .inspect_container (id )
751
751
self .assertIn ('State' , container_info )
752
752
state = container_info ['State' ]
753
- self .assertIn ('ExitCode' , state )
754
- if helpers .exec_driver_is_native ():
755
- self .assertNotEqual (state ['ExitCode' ], 0 )
756
753
self .assertIn ('Running' , state )
757
754
self .assertEqual (state ['Running' ], False )
758
755
@@ -766,9 +763,6 @@ def test_stop_with_dict_instead_of_id(self):
766
763
container_info = self .client .inspect_container (id )
767
764
self .assertIn ('State' , container_info )
768
765
state = container_info ['State' ]
769
- self .assertIn ('ExitCode' , state )
770
- if helpers .exec_driver_is_native ():
771
- self .assertNotEqual (state ['ExitCode' ], 0 )
772
766
self .assertIn ('Running' , state )
773
767
self .assertEqual (state ['Running' ], False )
774
768
You can’t perform that action at this time.
0 commit comments