From 7be197b845595505f0f6f5a80f5e7be92d81332c Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Mon, 17 Dec 2018 12:11:33 +0100 Subject: [PATCH] Update test_http.py --- tests/components/hassio/test_http.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/components/hassio/test_http.py b/tests/components/hassio/test_http.py index 8fca88d5fda..3f58c6e697e 100644 --- a/tests/components/hassio/test_http.py +++ b/tests/components/hassio/test_http.py @@ -42,7 +42,8 @@ def test_forward_request(hassio_client): ]) def test_auth_required_forward_request(hassio_noauth_client, build_type): """Test auth required for normal request.""" - resp = yield from hassio_noauth_client.post("/api/hassio/{}".format(build_type)) + resp = yield from hassio_noauth_client.post( + "/api/hassio/{}".format(build_type)) # Check we got right response assert resp.status == 401