Skip to content

Commit

Permalink
goodbye to Goodbye (#1)
Browse files Browse the repository at this point in the history
* goodbye to Goodbye

* fix test
  • Loading branch information
felipao-mx authored Jan 28, 2019
1 parent 06e7a79 commit 2fe2c35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion minpkg/hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ def say_hello():
return "hello"

def say_goodbye():
return "goodbye!!"
return "Goodbye!!"

def say_my_name():
return "python"
2 changes: 1 addition & 1 deletion tests/test_hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ def test_say_hello():
assert say_hello() == 'hello'

def test_say_goodbye():
assert say_goodbye() == 'goodbye'
assert say_goodbye() == 'Goodbye!!'

0 comments on commit 2fe2c35

Please sign in to comment.