From ff6f0a58c5437789a6144e3afb8ed838b113d87f Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 27 May 2025 23:42:33 +0900 Subject: [PATCH] test-network: replace unnecessary assertRegex() with assertIn() This fixes the following warning: ``` /tmp/systemd/test/test-network/systemd-networkd-tests.py:5107: SyntaxWarning: invalid escape sequence '\.' self.assertRegex(output, 'inet 10\.234\.77\.111/32.*dummy98') ``` Follow-up for 6479204e567cd55e1bfc5894131fba80ea68a780. --- test/test-network/systemd-networkd-tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test-network/systemd-networkd-tests.py b/test/test-network/systemd-networkd-tests.py index 541280a3d7a..3f8c6b1b65e 100755 --- a/test/test-network/systemd-networkd-tests.py +++ b/test/test-network/systemd-networkd-tests.py @@ -5104,11 +5104,11 @@ class NetworkdNetworkTests(unittest.TestCase, Utilities): output = check_output('ip -4 addr show dev dummy98') print(output) - self.assertRegex(output, 'inet 10\.234\.77\.111/32.*dummy98') + self.assertIn('inet 10.234.77.111/32', output) output = check_output('ip -6 addr show dev dummy98') print(output) - self.assertRegex(output, 'inet6 2222:3333::4444/64 scope global') + self.assertIn('inet6 2222:3333::4444/64 scope global', output) def check_nexthop(self, manage_foreign_nexthops, first): self.wait_online('veth99:routable', 'veth-peer:routable', 'dummy98:routable') -- 2.47.3