From db9ad6fa42252ac73e36d8dad73223bf624e8d28 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Tue, 26 Mar 2024 14:22:46 +0100 Subject: [PATCH] Fix up PrefixCounting warning RequestsLibrary is warning about missing url, as our url contains an equality sign. Fix that up by adding an explicit assignment. Signed-off-by: Robert Varga Change-Id: I66b2a38f72c3c267f5607975bc3cf7e0f876a2da --- 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 dfce8de879..abac3ff9dd 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} ${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