We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c1d169 commit 303e82aCopy full SHA for 303e82a
1 file changed
tests/exploratory/pick/radish/steps.py
@@ -19,12 +19,12 @@ def pick_decorated():
19
20
@then("I expect the pick step to be in the world")
21
def expect_pick_step(step):
22
- assert hasattr(world, "pick_decorated"), f"World is missing the decorated method pick_decorated"
+ assert hasattr(world, "pick_decorated"), "World is missing the decorated method pick_decorated"
23
24
25
@then("I expect the pick step not to be in the world")
26
def expect_pick_step_missing(step):
27
- assert not hasattr(world, "pick_decorated"), f"World has the decorated method pick_decorated"
+ assert not hasattr(world, "pick_decorated"), "World has the decorated method pick_decorated"
28
29
30
@when("I call the pick decorated method")
0 commit comments