Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4bfd5ab

Browse files
committedOct 19, 2022
Fixed integration tests
1 parent 920f27d commit 4bfd5ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/test_update.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def test_update_showing_outdated(run_command):
4545

4646
assert "Downloading index: package_index.tar.bz2 downloaded" in lines
4747
assert "Downloading index: library_index.tar.bz2 downloaded" in lines
48-
assert lines[-5].startswith("Arduino AVR Boards")
49-
assert lines[-2].startswith("USBHost")
48+
assert "Arduino AVR Boards" in lines[-5]
49+
assert "USBHost" in lines[-2]
5050

5151

5252
def test_update_with_url_not_found(run_command, httpserver):

0 commit comments

Comments
 (0)
Please sign in to comment.