From 0f25d4ec2205290ac33aa4887e74c1e95940dfcc Mon Sep 17 00:00:00 2001 From: matthewdicken <80536539+matthewdicken@users.noreply.github.com> Date: Thu, 13 Feb 2025 15:08:42 +0000 Subject: [PATCH] IS0501Test.py: remove trailing slash from /staged endpoint for PATCH (#856) --- nmostesting/suites/IS0501Test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmostesting/suites/IS0501Test.py b/nmostesting/suites/IS0501Test.py index 81f413c9..8f2284d1 100644 --- a/nmostesting/suites/IS0501Test.py +++ b/nmostesting/suites/IS0501Test.py @@ -1210,7 +1210,7 @@ def patch_auto_params(self, test, resources, resourceType, autoParams): """ if len(resources) > 0: for resource in resources: - dest_staged = "single/" + resourceType + "/" + resource + "/staged/" + dest_staged = "single/" + resourceType + "/" + resource + "/staged" dest_active = "single/" + resourceType + "/" + resource + "/active/" valid, response = self.is05_utils.checkCleanRequestJSON("GET", dest_staged)