Skip to content

Commit

Permalink
Merge branch 'master' into pr/fix/contikisetup
Browse files Browse the repository at this point in the history
  • Loading branch information
mguetschow authored Jun 24, 2024
2 parents 6ac5b18 + 3494887 commit 58c9f35
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 01-ci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Task #01 - Compile test
=======================
### Description

Execute ./dist/tools/compile_test/compile_test.py
Check the latest release branch CI build.

### Result

Expand Down
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
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 58c9f35

Please sign in to comment.