aboutsummaryrefslogtreecommitdiff
path: root/TESTING.md
diff options
context:
space:
mode:
authorEric Mountain <eric.mountain@datadoghq.com>2020-12-07 21:39:36 +0100
committerEric Mountain <eric.mountain@datadoghq.com>2020-12-18 07:51:45 +0100
commita0fc7a4b46dd05b337de56ebde0ae38a52668c9c (patch)
treee049199ffb73ff791354c85ad6d0ce1c763eb029 /TESTING.md
parentf2f5106c92fb9399844dcb7315fe23f3612e7cea (diff)
TESTING.md: Fix path the test environment conditions
Signed-off-by: Eric Mountain <eric.mountain@datadoghq.com>
Diffstat (limited to 'TESTING.md')
-rw-r--r--TESTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/TESTING.md b/TESTING.md
index a1217ae0b4..bfbc1c09e3 100644
--- a/TESTING.md
+++ b/TESTING.md
@@ -53,7 +53,7 @@ When adding new tests or modifying existing tests under `integration/`, testing
environment should be properly considered. `skip.If` from
[gotest.tools/skip](https://godoc.org/gotest.tools/skip) can be used to make the
test run conditionally. Full testing environment conditions can be found at
-[environment.go](https://github.com/moby/moby/blob/cb37987ee11655ed6bbef663d245e55922354c68/internal/test/environment/environment.go)
+[environment.go](https://github.com/moby/moby/blob/6b6eeed03b963a27085ea670f40cd5ff8a61f32e/testutil/environment/environment.go)
Here is a quick example. If the test needs to interact with a docker daemon on
the same host, the following condition should be checked within the test code