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 8ad3bf0 commit 98c51f6Copy full SHA for 98c51f6
test_hello.py
@@ -2,12 +2,12 @@
2
3
4
def setup_function(function):
5
- print(f" Running Setup: {function.__name__}")
+ print("Running Setup: %s" % {function.__name__})
6
function.x = 10
7
8
9
def teardown_function(function):
10
- print(f" Running Teardown: {function.__name__}")
+ print("Running Teardown: %s" % {function.__name__})
11
del function.x
12
13
@@ -16,4 +16,4 @@ def teardown_function(function):
16
# assert add(test_hello_add.x) == 12
17
18
def test_hello_subtract():
19
- assert subtract(test_hello_subtract.x) == 9
+ assert subtract(test_hello_subtract.x) == 9
0 commit comments