From a784c37ade478da8c7c7bfb8a906e2b9f4ad7131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 22 Jan 2025 01:15:45 +0100 Subject: [PATCH] tests/network: use ping -6 instead of ping6 The latter is a symlink to the former, and the symlink is not present in Arch. --- qubes/tests/integ/network_ipv6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubes/tests/integ/network_ipv6.py b/qubes/tests/integ/network_ipv6.py index 486907702..9ce462595 100644 --- a/qubes/tests/integ/network_ipv6.py +++ b/qubes/tests/integ/network_ipv6.py @@ -36,7 +36,7 @@ class VmIPv6NetworkingMixin(VmNetworkingMixin): test_ip6 = "2000:abcd::1" - ping6_cmd = "ping6 -W 1 -n -c 1 {target}" + ping6_cmd = "ping -6 -W 1 -n -c 1 {target}" def setUp(self): super(VmIPv6NetworkingMixin, self).setUp()