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):
78
78
def test_given_standby_on_message_diagnostics_failed_shall_raise_exception_and_keep_in_state (cls ):
79
79
with cls .assertRaises (UnsupportedTransition ) as context :
80
80
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 )
82
82
83
83
def test_given_standby_on_message_diagnostics_passed_shall_raise_exception_and_keep_in_state (cls ):
84
84
with cls .assertRaises (UnsupportedTransition ) as context :
85
85
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 )
87
87
88
88
def test_given_standby_on_message_operator_inservice_shall_raise_exception_and_keep_in_state (cls ):
89
89
with cls .assertRaises (UnsupportedTransition ) as context :
90
90
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 )
92
92
93
93
94
94
if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments