From a2c3919c0fb17989f8bb0699c3df5dbdd28bf971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Walstr=C3=B6m?= Date: Tue, 10 Dec 2024 09:21:42 +0100 Subject: [PATCH] test: restconf: Remove extra / when getting datastore --- test/infamy/restconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/infamy/restconf.py b/test/infamy/restconf.py index 6d440c19..1537a10a 100644 --- a/test/infamy/restconf.py +++ b/test/infamy/restconf.py @@ -204,7 +204,7 @@ class Device(Transport): """Get a datastore""" dspath = f"/ds/ietf-datastores:{datastore}" if path is not None: - dspath = f"{dspath}/{path}" + dspath = f"{dspath}{path}" url = f"{self.restconf_url}{dspath}" try: