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 6479204e56.
This commit is contained in:
Yu Watanabe
2025-05-27 23:42:33 +09:00
parent b1bed07d84
commit ff6f0a58c5

View File

@@ -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')