Skip to content

Commit 4bfd5ab

Browse files
committed
Fixed integration tests
1 parent 920f27d commit 4bfd5ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: test/test_update.py

+2-2
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)