Skip to content

Commit

Permalink
Test should check for code 7 (#43)
Browse files Browse the repository at this point in the history
* test should check for code 7

* there were two
  • Loading branch information
AaronFeledy authored Oct 25, 2024
1 parent eda90a2 commit 339e4e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/1.x/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ lando ssh -s defaults -c "go version | grep go1.19"

# Should run only on port 80 by default
lando ssh -s defaults -c "curl http://localhost" | grep HEART
lando ssh -s defaults -c "curl https://localhost" || echo $? | grep 1
lando ssh -s defaults -c "curl https://localhost" || echo $? | grep 7

# Should use the version if specified by user
lando ssh -s patch -c "go version | grep go1.17.3"

# Should not serve port 80 for cli
lando ssh -s cli -c "curl http://localhost" || echo $? | grep 1
lando ssh -s cli -c "curl http://localhost" || echo $? | grep 7
```

Destroy tests
Expand Down

0 comments on commit 339e4e0

Please sign in to comment.