From 617ae6f7e55e2acb8a5d6aaef5e9de2b71454db3 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Thu, 23 Jan 2025 17:32:24 +0200 Subject: [PATCH] fix: Don't require multiple addresses for CM testcases Inherit from `TestCasePortRebinding` rather than `TestCaseAddressRebinding`. Fixes #419 --- testcases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcases.py b/testcases.py index b38c24d9..bda56903 100644 --- a/testcases.py +++ b/testcases.py @@ -1424,7 +1424,7 @@ def check(self) -> TestResult: return TestResult.SUCCEEDED -class TestCaseConnectionMigration(TestCaseAddressRebinding): +class TestCaseConnectionMigration(TestCasePortRebinding): @staticmethod def name(): return "connectionmigration"