You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@pytest.mark.it("The function sing() should return a string with the song lyrics")
27
27
deftest_function_sing_exists(app):
28
28
try:
29
-
assertapp.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
+
assertapp.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"
30
30
exceptAttributeError:
31
31
raiseAttributeError("The function 'sing' should exist on app.py")
0 commit comments