From d4446501f3245a87a605bea403710954f0400fb5 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 17 Nov 2020 21:12:45 +0100 Subject: [PATCH] Rename e2e test files to include _test.go suffix The test were working fine. Just my IDE doesn't like the files without the suffix and I don't like red errors. Signed-off-by: Paul Holzinger --- test/e2e/{pod_pod_namespaces.go => pod_pod_namespaces_test.go} | 0 test/e2e/{run_seccomp.go => run_seccomp_test.go} | 0 test/e2e/{run_security_labels.go => run_security_labels_test.go} | 0 test/e2e/{run_working_dir.go => run_working_dir_test.go} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename test/e2e/{pod_pod_namespaces.go => pod_pod_namespaces_test.go} (100%) rename test/e2e/{run_seccomp.go => run_seccomp_test.go} (100%) rename test/e2e/{run_security_labels.go => run_security_labels_test.go} (100%) rename test/e2e/{run_working_dir.go => run_working_dir_test.go} (100%) diff --git a/test/e2e/pod_pod_namespaces.go b/test/e2e/pod_pod_namespaces_test.go similarity index 100% rename from test/e2e/pod_pod_namespaces.go rename to test/e2e/pod_pod_namespaces_test.go diff --git a/test/e2e/run_seccomp.go b/test/e2e/run_seccomp_test.go similarity index 100% rename from test/e2e/run_seccomp.go rename to test/e2e/run_seccomp_test.go diff --git a/test/e2e/run_security_labels.go b/test/e2e/run_security_labels_test.go similarity index 100% rename from test/e2e/run_security_labels.go rename to test/e2e/run_security_labels_test.go diff --git a/test/e2e/run_working_dir.go b/test/e2e/run_working_dir_test.go similarity index 100% rename from test/e2e/run_working_dir.go rename to test/e2e/run_working_dir_test.go