Skip to content

Commit

Permalink
Merge branch 'master' into pr/iotlabrandom
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKevinWeiss committed Jun 21, 2024
2 parents 1c77215 + a7770fa commit 8e318b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ pytest-cov
pytest-rerunfailures
riotctrl
scapy
paho-mqtt
paho-mqtt<2
3 changes: 1 addition & 2 deletions testutils/tests/test_github.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,7 @@ def __init__(self, issues):

# pylint: disable=W0613
def get_issues(self, *args, **kwargs):
for issue in self.issues:
yield issue
yield from self.issues

issues = [MockIssue(title) for title in issue_titles]
repo = MockRepo(issues)
Expand Down

0 comments on commit 8e318b7

Please sign in to comment.