diff --git a/e2e/tests/configread/configread.go b/e2e/tests/configread/configread.go index a677ff8a8..e53a5ad0d 100644 --- a/e2e/tests/configread/configread.go +++ b/e2e/tests/configread/configread.go @@ -314,7 +314,7 @@ var _ = ginkgo.Describe("config read command", ginkgo.Label("config-read"), func ginkgo.It("should read configuration using custom id-label", func(ctx context.Context) { tempDir, err := framework.CopyToTempDirWithoutChdir( - "tests/configread/testdata", + "tests/configread/testdata-id-label", ) framework.ExpectNoError(err) ginkgo.DeferCleanup(func() { _ = os.RemoveAll(tempDir) }) diff --git a/e2e/tests/configread/testdata-id-label/.devcontainer/devcontainer.json b/e2e/tests/configread/testdata-id-label/.devcontainer/devcontainer.json new file mode 100644 index 000000000..09a1f45cc --- /dev/null +++ b/e2e/tests/configread/testdata-id-label/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Config Read Custom ID Label", + "image": "ghcr.io/devsy-org/test-images/base:ubuntu" +}