Browse code

Protect environment for system integration tests

Signed-off-by: Christopher Crone <christopher.crone@docker.com>

Christopher Crone authored on 2017/09/25 21:05:18
Showing 1 changed files
... ...
@@ -23,6 +23,6 @@ func TestMain(m *testing.M) {
23 23
 }
24 24
 
25 25
 func setupTest(t *testing.T) func() {
26
-	environment.ProtectImages(t, testEnv)
26
+	environment.ProtectAll(t, testEnv)
27 27
 	return func() { testEnv.Clean(t) }
28 28
 }