Browse Source

tests/e2e: fix exec paths

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
Gyuho Lee 7 years ago
parent
commit
a8a5176f1d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/e2e/main_test.go

+ 2 - 2
tests/e2e/main_test.go

@@ -33,8 +33,8 @@ func TestMain(m *testing.M) {
 	os.Setenv("ETCD_UNSUPPORTED_ARCH", runtime.GOARCH)
 	os.Setenv("ETCD_UNSUPPORTED_ARCH", runtime.GOARCH)
 	os.Unsetenv("ETCDCTL_API")
 	os.Unsetenv("ETCDCTL_API")
 
 
-	flag.StringVar(&binDir, "bin-dir", "../bin", "The directory for store etcd and etcdctl binaries.")
-	flag.StringVar(&certDir, "cert-dir", "../integration/fixtures", "The directory for store certificate files.")
+	flag.StringVar(&binDir, "bin-dir", "../../bin", "The directory for store etcd and etcdctl binaries.")
+	flag.StringVar(&certDir, "cert-dir", "../../integration/fixtures", "The directory for store certificate files.")
 	flag.Parse()
 	flag.Parse()
 
 
 	binPath = binDir + "/etcd"
 	binPath = binDir + "/etcd"