From 60556cb10074caf1be7458d68d88645d660a5806 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Tue, 26 Mar 2024 18:35:30 +0100 Subject: [PATCH] Correctly space expected_status The single space we have here gets escaped, leading to a test failure. Fix that up. Signed-off-by: Robert Varga Change-Id: Ia1a52820dc728a6ecccc1e989aa05f89a8eac06d --- csit/libraries/PrefixCounting.robot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csit/libraries/PrefixCounting.robot b/csit/libraries/PrefixCounting.robot index abac3ff9dd..bd32c943f4 100644 --- a/csit/libraries/PrefixCounting.robot +++ b/csit/libraries/PrefixCounting.robot @@ -35,7 +35,7 @@ Get_Ipv4_Topology ... ... Contrary to Utils.Get_Data_From_URI, this does not Log the (potentially huge) content. [Arguments] ${session}=operational ${topology}=example-ipv4-topology - ${response} = RequestsLibrary.GET On Session ${session} url=${PC_NW_TOPOLOGY}=${topology}?content=nonconfig expected_status=any + ${response} = RequestsLibrary.GET On Session ${session} url=${PC_NW_TOPOLOGY}=${topology}?content=nonconfig expected_status=any IF ${response.status_code} != 200 Fail Get on ${topology} returned status code ${response.status_code} with message: ${response.text} END -- 2.36.6