Browse code

TESTING.md: Fix path the test environment conditions

Signed-off-by: Eric Mountain <eric.mountain@datadoghq.com>

Eric Mountain authored on 2020/12/08 05:39:36
Showing 1 changed files
... ...
@@ -53,7 +53,7 @@ When adding new tests or modifying existing tests under `integration/`, testing
53 53
 environment should be properly considered. `skip.If` from 
54 54
 [gotest.tools/skip](https://godoc.org/gotest.tools/skip) can be used to make the 
55 55
 test run conditionally. Full testing environment conditions can be found at 
56
-[environment.go](https://github.com/moby/moby/blob/cb37987ee11655ed6bbef663d245e55922354c68/internal/test/environment/environment.go)
56
+[environment.go](https://github.com/moby/moby/blob/6b6eeed03b963a27085ea670f40cd5ff8a61f32e/testutil/environment/environment.go)
57 57
 
58 58
 Here is a quick example. If the test needs to interact with a docker daemon on 
59 59
 the same host, the following condition should be checked within the test code