From df869b08280f6f3378a6dde39028d4551cbdfbcb Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Thu, 27 Feb 2025 22:16:41 +0100 Subject: [PATCH] Fixed linting warnings --- transip_client/tests/tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"}, )