From 1270fd2e917c80f542b2180e51521870b39fae51 Mon Sep 17 00:00:00 2001 From: Maikel Poot Date: Tue, 30 Nov 2021 12:36:08 +0100 Subject: [PATCH] Fix lint error: forgot to lint after updating the tests. --- tests/test_octodns_provider_transip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_octodns_provider_transip.py b/tests/test_octodns_provider_transip.py index e0ba398..f91fd31 100644 --- a/tests/test_octodns_provider_transip.py +++ b/tests/test_octodns_provider_transip.py @@ -368,7 +368,7 @@ class TestTransipProvider(TestCase): self.assertEquals( sorted(seen_entries, key=itemgetter("name", "type", "expire")), sorted(expected_entries, key=itemgetter("name", "type", "expire")), - ) + ) @patch("octodns.provider.transip.TransIP") def test_apply_failure_on_not_found(self, client_mock):