From 0afbc2faac68538692efbb9085d188767b5fac86 Mon Sep 17 00:00:00 2001 From: Anirudh Ramanathan Date: Fri, 16 Jun 2017 15:23:32 -0700 Subject: [PATCH] Fix failing test in examples suite --- test/e2e/examples.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/examples.go b/test/e2e/examples.go index 05ea5746be4b..d4f482df6fe5 100644 --- a/test/e2e/examples.go +++ b/test/e2e/examples.go @@ -265,7 +265,7 @@ var _ = framework.KubeDescribe("[Feature:Example]", func() { framework.KubeDescribe("CassandraStatefulSet", func() { It("should create statefulset", func() { mkpath := func(file string) string { - return filepath.Join("examples/storage/cassandra", file) + return filepath.Join(framework.TestContext.RepoRoot, "examples/storage/cassandra", file) } serviceYaml := mkpath("cassandra-service.yaml") nsFlag := fmt.Sprintf("--namespace=%v", ns)