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 @@ -78,17 +78,17 @@ def test_given_standby_on_message_fault_trigger_shall_set_suspect(cls):
7878 def test_given_standby_on_message_diagnostics_failed_shall_raise_exception_and_keep_in_state (cls ):
7979 with cls .assertRaises (UnsupportedTransition ) as context :
8080 cls .hsm .on_message ('diagnostics failed' )
81- cls .assertEqual (isinstance (cls .hsm ._current_state , Standby ), True )
81+ cls .assertEqual (isinstance (cls .hsm ._current_state , Standby ), True )
8282
8383 def test_given_standby_on_message_diagnostics_passed_shall_raise_exception_and_keep_in_state (cls ):
8484 with cls .assertRaises (UnsupportedTransition ) as context :
8585 cls .hsm .on_message ('diagnostics passed' )
86- cls .assertEqual (isinstance (cls .hsm ._current_state , Standby ), True )
86+ cls .assertEqual (isinstance (cls .hsm ._current_state , Standby ), True )
8787
8888 def test_given_standby_on_message_operator_inservice_shall_raise_exception_and_keep_in_state (cls ):
8989 with cls .assertRaises (UnsupportedTransition ) as context :
9090 cls .hsm .on_message ('operator inservice' )
91- cls .assertEqual (isinstance (cls .hsm ._current_state , Standby ), True )
91+ cls .assertEqual (isinstance (cls .hsm ._current_state , Standby ), True )
9292
9393
9494if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments