-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(tests): Use proper API and check for required token (#10223)
- Loading branch information
1 parent
60cbb62
commit cd3d0bf
Showing
4 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
def test_cfg(dut): | ||
dut.expect("Hello cfg!") | ||
dut.expect_exact("Hello cfg!") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
def test_hello_world(dut): | ||
dut.expect("Hello Arduino!") | ||
dut.expect_exact("Hello Arduino!") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
def test_nvs(dut): | ||
dut.expect("Current counter value: 0") | ||
dut.expect("Current counter value: 1") | ||
dut.expect("Current counter value: 2") | ||
dut.expect_exact("Current counter value: 0") | ||
dut.expect_exact("Current counter value: 1") | ||
dut.expect_exact("Current counter value: 2") |