summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork8s-ci-robot <k8s-ci-robot@users.noreply.github.com>2018-08-21 15:16:58 -0700
committerGitHub <noreply@github.com>2018-08-21 15:16:58 -0700
commit85085fe96fc7bd9eedc77e54bc4f08340e1c1b86 (patch)
treece781cb97ecf201088a59f481fe1133f6ca7cb04
parent85f8b5cc582c250aba7106842cdf206329605112 (diff)
parenteb5a108108cb354036f214d5eed776e143c1e378 (diff)
Merge pull request #2574 from paulangton/testing-doc-fix
syntax fix for testing doc
-rw-r--r--contributors/devel/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/devel/testing.md b/contributors/devel/testing.md
index 6bac2bd2..8c5b300a 100644
--- a/contributors/devel/testing.md
+++ b/contributors/devel/testing.md
@@ -57,7 +57,7 @@ make test # Run all unit tests.
If any unit test fails with a timeout panic (see [#1594](https://github.com/kubernetes/community/issues/1594)) on the testing package, you can increase the `KUBE_TIMEOUT` value as shown below.
```sh
-make test KUBE_TIMEOUT=-timeout 300s
+make test KUBE_TIMEOUT="-timeout 300s"
```
### Set go flags during unit tests