Skip to content

Commit 98c51f6

Browse files
authored
Update test_hello.py
1 parent 8ad3bf0 commit 98c51f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test_hello.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33

44
def setup_function(function):
5-
print(f" Running Setup: {function.__name__}")
5+
print("Running Setup: %s" % {function.__name__})
66
function.x = 10
77

88

99
def teardown_function(function):
10-
print(f" Running Teardown: {function.__name__}")
10+
print("Running Teardown: %s" % {function.__name__})
1111
del function.x
1212

1313

@@ -16,4 +16,4 @@ def teardown_function(function):
1616
# assert add(test_hello_add.x) == 12
1717

1818
def test_hello_subtract():
19-
assert subtract(test_hello_subtract.x) == 9
19+
assert subtract(test_hello_subtract.x) == 9

0 commit comments

Comments
 (0)