From 5b82e16ac37d24c1968849324980958954b793af Mon Sep 17 00:00:00 2001 From: Denys Zhdanov Date: Sun, 17 Sep 2023 11:40:54 +0200 Subject: [PATCH] fix linting --- lib/carbon/tests/test_routers.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/carbon/tests/test_routers.py b/lib/carbon/tests/test_routers.py index 8d05a37a..f6309e8f 100644 --- a/lib/carbon/tests/test_routers.py +++ b/lib/carbon/tests/test_routers.py @@ -52,4 +52,7 @@ def testBasic(self): for destination in DESTINATIONS: router.addDestination(parseDestination(destination)) - self.assertEqual(len(list(router.getDestinations('foo.bar'))), settings['REPLICATION_FACTOR']) + self.assertEqual( + len(list(router.getDestinations('foo.bar'))), + settings['REPLICATION_FACTOR'] + )