diff --git a/minpkg/hello.py b/minpkg/hello.py index df3b54d..816d907 100644 --- a/minpkg/hello.py +++ b/minpkg/hello.py @@ -4,7 +4,7 @@ def say_hello(): return "hello" def say_goodbye(): - return "goodbye!!" + return "Goodbye!!" def say_my_name(): return "python" diff --git a/tests/test_hello.py b/tests/test_hello.py index 43537e0..6b1a9dc 100644 --- a/tests/test_hello.py +++ b/tests/test_hello.py @@ -4,4 +4,4 @@ def test_say_hello(): assert say_hello() == 'hello' def test_say_goodbye(): - assert say_goodbye() == 'goodbye' \ No newline at end of file + assert say_goodbye() == 'Goodbye!!'