From 21a3af5a5cf9c3f0fd217d7c952225fda43c1dbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikolai=20G=C3=BCtschow?= Date: Mon, 17 Jun 2024 11:31:36 +0200 Subject: [PATCH] 09-coap: pass URI instead of separate host and path components adapts the release spec to the changes from https://github.com/RIOT-OS/RIOT/pull/20554 --- 09-coap/test_spec09.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09-coap/test_spec09.py b/09-coap/test_spec09.py index 55fbc01..ab3251b 100644 --- a/09-coap/test_spec09.py +++ b/09-coap/test_spec09.py @@ -36,7 +36,7 @@ def coap_get( cmd = "coap get " if confirmable: cmd += "-c " - cmd += f"[{addr}]:{port:d} {resource}" + cmd += f"coap://[{addr}]:{port:d}{resource}" return self.cmd(cmd, timeout=timeout, async_=async_)