@@ -121,7 +121,7 @@ def test_can_wrap_step_actions(self):
121121 assert handler .log_list .get () == f"root: my desc: stepped_on(1) [item={ self .item_1 } , context={ self .context_1 } ]"
122122 assert handler .log_list .get () == f"root: my desc: stepped_on(1) [item={ self .item_2 } , context={ self .context_2 } ]"
123123
124- def test_rewrapping_step_action_throws_attribute_error_when_allow_re_wrapping_is_false (self ):
124+ def test_rewrapping_step_action_throws_attribute_error (self ):
125125 logging_wrapper = DebugLoggingWrapper ('my desc' , self .logger )
126126
127127 action = StepAction (lambda item , context : None )
@@ -132,7 +132,7 @@ def test_rewrapping_step_action_throws_attribute_error_when_allow_re_wrapping_is
132132 with pytest .raises (AttributeError ):
133133 logging_wrapper .wrap (wrapped_action )
134134
135- def test_rewrapping_queue_condition_throws_attribute_error_when_allow_re_wrapping_is_false (self ):
135+ def test_rewrapping_queue_condition_throws_attribute_error (self ):
136136 logging_wrapper = DebugLoggingWrapper ('my desc' , self .logger )
137137
138138 should_stop = bool_generator ()
@@ -145,7 +145,7 @@ def test_rewrapping_queue_condition_throws_attribute_error_when_allow_re_wrappin
145145 with pytest .raises (AttributeError ):
146146 logging_wrapper .wrap (wrapped_condition )
147147
148- def test_rewrapping_stop_condition_throws_attribute_error_when_allow_re_wrapping_is_false (self ):
148+ def test_rewrapping_stop_condition_throws_attribute_error (self ):
149149 logging_wrapper = DebugLoggingWrapper ('my desc' , self .logger )
150150
151151 condition = StopCondition (lambda item , context : True )
0 commit comments