Skip to content

Commit d487d71

Browse files
committed
rename tests
Signed-off-by: Max Chesterfield <max.chesterfield@zepben.com>
1 parent 33526cb commit d487d71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/services/network/tracing/traversal/test_debug_logging_wrapper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)