From b3efaf7a1956c9e1133e2073c8082b66c230a6e7 Mon Sep 17 00:00:00 2001 From: Himani Deshpande Date: Wed, 4 Dec 2024 17:07:06 -0500 Subject: [PATCH] [Test] Removing colour from output of ip command --- .../integration-tests/tests/multiple_nics/test_multiple_nics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration-tests/tests/multiple_nics/test_multiple_nics.py b/tests/integration-tests/tests/multiple_nics/test_multiple_nics.py index 6c849171d5..a21064bebc 100644 --- a/tests/integration-tests/tests/multiple_nics/test_multiple_nics.py +++ b/tests/integration-tests/tests/multiple_nics/test_multiple_nics.py @@ -54,7 +54,7 @@ def _test_head_node_nics(remote_command_executor, region): ).stdout head_node_ip_addresses = _get_private_ip_addresses(head_node_instance_id, region, remote_command_executor) - ip_a_result = remote_command_executor.run_remote_command("ip a").stdout + ip_a_result = remote_command_executor.run_remote_command("ip a | col -b").stdout for ip_address in head_node_ip_addresses: assert_that(ip_a_result).matches(".* inet {0}.*".format(ip_address))