fix test (remove host)

This commit is contained in:
Kevin Fronczak
2020-07-11 14:41:44 +00:00
parent 45cb4028b8
commit 322aae37dc
+1 -2
View File
@@ -128,8 +128,7 @@ class TestAuth(unittest.TestCase):
def test_header(self):
"""Test header data."""
self.auth.token = "bar"
self.auth.host = "foo"
expected_header = {"Host": "foo", "TOKEN_AUTH": "bar"}
expected_header = {"TOKEN_AUTH": "bar"}
self.assertDictEqual(self.auth.header, expected_header)
def test_header_no_token(self):