diff --git a/exercises/04-response-body-json/test.py b/exercises/04-response-body-json/test.py index 28031b9..b6bcf62 100644 --- a/exercises/04-response-body-json/test.py +++ b/exercises/04-response-body-json/test.py @@ -20,4 +20,5 @@ def test_url_output(capsys, app): mock_request.return_value = FakeResponse() app() captured = capsys.readouterr() - assert "Current time: 19 hrs 45 min and 06 sec\n" == captured.out \ No newline at end of file + assert "Current time: 19 hrs 45 min and 06 sec\n", "Hora actual: 17 h 06 min y 23 seg" == captured.out + \ No newline at end of file