From a65c9b81e88a8514be502e8e85ba1e7ed05d2d44 Mon Sep 17 00:00:00 2001 From: Donghwa Kim Date: Sun, 8 Jul 2018 18:22:21 +0900 Subject: [PATCH] Fix typo on test.md It said `TESTFLAGS='-test.run ^TestValidateIPAddress$' make test-unit` runs `TestBuild` test, but actually runs `TestValidateIPAddress` test. Signed-off-by: Donghwa Kim Upstream-commit: 3048c3a7682919297d8d7d26897a59dc91b3be09 Component: engine --- components/engine/docs/contributing/test.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/docs/contributing/test.md b/components/engine/docs/contributing/test.md index fdcee328a9..8a50b06786 100644 --- a/components/engine/docs/contributing/test.md +++ b/components/engine/docs/contributing/test.md @@ -153,7 +153,7 @@ $ TESTDIRS='opts' make test-unit You can also use the `TESTFLAGS` environment variable to run a single test. The flag's value is passed as arguments to the `go test` command. For example, from -your local host you can run the `TestBuild` test with this command: +your local host you can run the `TestValidateIPAddress` test with this command: ```bash $ TESTFLAGS='-test.run ^TestValidateIPAddress$' make test-unit