From 1b92f245c16a331ed18309a5bf96358c4ad3f3d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Manuel=20Mu=C3=B1oz=20Silva?= Date: Fri, 23 Oct 2020 01:14:10 +0000 Subject: [PATCH] Arreglado Exercise 4 in python-http-requests-api-tutorial-exercises --- exercises/04-response-body-json/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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