From 2fe2c350140879de89675e5d5ffad472659a64f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20L=C3=B3pez?= <37890430+felipaoo@users.noreply.github.com> Date: Sun, 27 Jan 2019 19:15:00 -0600 Subject: [PATCH] goodbye to Goodbye (#1) * goodbye to Goodbye * fix test --- minpkg/hello.py | 2 +- tests/test_hello.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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!!'