From d43dac2202667a407f4c5ab061c04b0ea334aa20 Mon Sep 17 00:00:00 2001 From: Christopher Crone Date: Mon, 25 Sep 2017 14:05:18 +0200 Subject: [PATCH] Protect environment for system integration tests Signed-off-by: Christopher Crone --- integration/system/main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/system/main_test.go b/integration/system/main_test.go index ad0d203753..575bbc166d 100644 --- a/integration/system/main_test.go +++ b/integration/system/main_test.go @@ -23,6 +23,6 @@ func TestMain(m *testing.M) { } func setupTest(t *testing.T) func() { - environment.ProtectImages(t, testEnv) + environment.ProtectAll(t, testEnv) return func() { testEnv.Clean(t) } }