From 1064810bcea722c5dd714ec75a371db397b34bb4 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Wed, 24 Apr 2024 07:36:09 +0100 Subject: [PATCH] flake8 --- unittests/test_multicast_routing_entry.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/unittests/test_multicast_routing_entry.py b/unittests/test_multicast_routing_entry.py index bdcae6d1..b6f1d4cd 100644 --- a/unittests/test_multicast_routing_entry.py +++ b/unittests/test_multicast_routing_entry.py @@ -43,8 +43,9 @@ def test_creating_new_multicast_routing_entry(self): # While we're here, let's check a few other basic operations self.assertEqual( str(a_multicast), - "0x00000001:0x00000001:{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, " - "16, 17}:{0, 1, 2, 3, 4, 5}") + "0x00000001:0x00000001:" + "{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17}:" + "{0, 1, 2, 3, 4, 5}") self.assertEqual( a_multicast, pickle.loads(pickle.dumps(a_multicast, pickle.HIGHEST_PROTOCOL)))