Skip to content

Commit

Permalink
09-coap: pass URI instead of separate host and path components
Browse files Browse the repository at this point in the history
adapts the release spec to the changes from RIOT-OS/RIOT#20554
  • Loading branch information
mguetschow committed Jun 18, 2024
1 parent b34bd20 commit 21a3af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 09-coap/test_spec09.py
Original file line number Diff line number Diff line change
Expand Up @@ -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_)


Expand Down

0 comments on commit 21a3af5

Please sign in to comment.