diff --git a/transip_client/tests/tests.py b/transip_client/tests/tests.py index fc911d8..9176f79 100644 --- a/transip_client/tests/tests.py +++ b/transip_client/tests/tests.py @@ -1,7 +1,7 @@ import json import os -from unittest import TestCase, skip +from unittest import TestCase from unittest.mock import call, patch, Mock from pathlib import Path @@ -225,7 +225,7 @@ class RunTestCase(TestCase): self.assertEqual(result.exit_code, 0) self.mocked_get.assert_called_with( - f"https://other-provider.com/domains/foobar.com/dns", + "https://other-provider.com/domains/foobar.com/dns", headers={"Authorization": "Bearer token"}, ) @@ -243,7 +243,7 @@ class RunTestCase(TestCase): ) self.mocked_put.assert_called_with( - f"https://other-provider.com/domains/foobar.com/dns", + "https://other-provider.com/domains/foobar.com/dns", data=expected_json, headers={"Authorization": "Bearer token"}, )