Selaa lähdekoodia

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 <shanytt@gmail.com>
Donghwa Kim 7 vuotta sitten
vanhempi
commit
3048c3a768
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      docs/contributing/test.md

+ 1 - 1
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
 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
 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
 ```bash
 $ TESTFLAGS='-test.run ^TestValidateIPAddress$' make test-unit
 $ TESTFLAGS='-test.run ^TestValidateIPAddress$' make test-unit