Skip to content

Commit ba0434a

Browse files
committed
update test
1 parent 7a17b1b commit ba0434a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

py_app/test_uppercase.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import pytest
2-
from uppercase import to_uppercase
2+
from uppercase import to_upper
33

44
def test_to_uppercase():
5-
assert to_uppercase("hello") == "HELLO"
6-
assert to_uppercase("world") == "WORLD"
7-
assert to_uppercase("Python") == "PYTHON"
8-
assert to_uppercase("123abc") == "123ABC"
9-
assert to_uppercase("!@#") == "!@#"
10-
assert to_uppercase("") == ""
5+
assert to_upper("hello") == "HELLO"
6+
assert to_upper("world") == "WORLD"
7+
assert to_upper("Python") == "PYTHON"
8+
assert to_upper("123abc") == "123ABC"
9+
assert to_upper("!@#") == "!@#"
10+
assert to_upper("") == ""
1111

1212
if __name__ == "__main__":
1313
pytest.main()

0 commit comments

Comments
 (0)