Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ci/tests/vswitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async def test_virtio_net_wget(
await wait_for_output(backend, b"# ")

# VM 0 should reach the internet
await send_input(backend, b"wget https://trustworthy.systems/song\n")
await send_input(backend, b"wget http://trustworthy.systems/song\n")
await wait_for_output(backend, b"'song' saved")
await send_input(backend, b"cat song\n")
await wait_for_output(backend, b"Implementation deep and fine.")
Expand All @@ -51,7 +51,7 @@ async def test_virtio_net_wget(
await send_input(backend, b"root\n")
await wait_for_output(backend, b"# ")

await send_input(backend, b"wget https://trustworthy.systems/song\n")
await send_input(backend, b"wget http://trustworthy.systems/song\n")
await wait_for_output(backend, b"'song' saved")
await send_input(backend, b"cat song\n")
await wait_for_output(backend, b"Implementation deep and fine.")
Expand All @@ -77,7 +77,7 @@ async def test_virtio_net_wget(
await send_input(backend, b"root\n")
await wait_for_output(backend, b"# ")

await send_input(backend, b"wget https://trustworthy.systems/song\n")
await send_input(backend, b"wget http://trustworthy.systems/song\n")
await wait_for_output(backend, b"'song' saved")
await send_input(backend, b"cat song\n")
await wait_for_output(backend, b"Implementation deep and fine.")
Expand Down
Loading