Skip to content

Commit 67fed3e

Browse files
committed
fix tests
1 parent 6ecdaa0 commit 67fed3e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/1.20/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ lando exec defaults -- nginx -v 2>&1 | grep 1.20.2
2626
lando exec defaults -- curl http://localhost | grep ROOTDIR
2727

2828
# Should only serve over http by default
29-
lando exec defaults -- curl https://localhost" || echo $? | grep 7
29+
lando exec defaults -- curl https://localhost || echo $? | grep 7
3030
```
3131

3232
## Destroy tests

examples/1.27/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ lando exec defaults -- nginx -v 2>&1 | grep 1.27.7
2626
lando exec defaults -- curl -s http://localhost | grep ROOTDIR
2727

2828
# Should only serve over http by default
29-
lando exec defaults -- curl -s --write-out \"%{exitcode}\" https://localhost | grep 7
29+
lando exec defaults -- curl -s --write-out "%{exitcode}" https://localhost | grep 7
3030
```
3131

3232
## Destroy tests

examples/1.28/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ lando exec defaults -- nginx -v 2>&1 | grep 1.28.0
2626
lando exec defaults -- curl -s http://localhost | grep ROOTDIR
2727

2828
# Should only serve over http by default
29-
lando exec defaults -- curl -s --write-out \"%{exitcode}\" https://localhost | grep 7
29+
lando exec defaults -- curl -s --write-out "%{exitcode}" https://localhost | grep 7
3030
```
3131

3232
## Destroy tests

0 commit comments

Comments
 (0)