summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/README.md b/test/README.md
index 26d7a5444..b3f179181 100644
--- a/test/README.md
+++ b/test/README.md
@@ -36,7 +36,7 @@ GOPATH=~/go go get github.com/onsi/gomega/...
You can run the entire suite of integration tests with the following command:
```
-GOPATH=~/go ginkgo -v tests/e2e/.
+GOPATH=~/go ginkgo -v test/e2e/.
```
Note the trailing period on the command above. Also, **-v** invokes verbose mode. That
@@ -45,7 +45,7 @@ switch is optional.
You can run a single file of integration tests using the go test command:
```
-GOPATH=~/go go test -v tests/e2e/libpod_suite_test.go tests/e2e/your_test.go
+GOPATH=~/go go test -v test/e2e/libpod_suite_test.go tests/e2e/your_test.go
```
#### Run all tests like PAPR