Skip to content

Commit

Permalink
Fix trivially broken unauth tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lodifice committed Jan 25, 2019
1 parent 3e85b44 commit 8fb471c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test-unauth.bats
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ teardown() {
@test "check that ping 8.8.8.8 results in packet filtering" {
run ns ping -n -i0.1 -c10 8.8.8.8
echo "$output" >&2
egrep 'Packet Filtered' <<<"$output"
egrep 'Packet filtered' <<<"$output"
egrep ' 100% packet loss' <<< "$output"
}

Expand Down Expand Up @@ -104,7 +104,7 @@ teardown() {
}

@test "check that pass-through HTTP is working" {
run ns curl -qi https://ftp.agdsn.de/pub
run ns curl -qi https://ftp.agdsn.de/pub/
echo "$output" >&2
[[ $status = 0 ]]
egrep 'HTTP/[0-9]+\.[0-9] 200' <<<"$output"
Expand Down

0 comments on commit 8fb471c

Please sign in to comment.