Skip to content

Commit 503c4a5

Browse files
authored
Update test.py
1 parent e1a6b38 commit 503c4a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/18-The-Beatles/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ def test_function_hardcode_output():
2626
@pytest.mark.it("The function sing() should return a string with the song lyrics")
2727
def test_function_sing_exists(app):
2828
try:
29-
assert app.sing() == "let it be, let it be, let it be, let it be, there will be an answer, let it be, let it be, let it be, let it be, let it be, whisper words of wisdom, let it be"
29+
assert app.sing() == "let it be,\nlet it be,\nlet it be,\nlet it be,\nthere will be an answer,\nlet it be,\nlet it be,\nlet it be,\nlet it be,\nlet it be,\nwhisper words of wisdom, let it be"
3030
except AttributeError:
3131
raise AttributeError("The function 'sing' should exist on app.py")

0 commit comments

Comments
 (0)