fix k8s topgun test charts path

Signed-off-by: Rui Yang <ryang@pivotal.io>
This commit is contained in:
Rui Yang 2019-11-15 15:57:25 -05:00
parent eb4c434bba
commit 8283eed5f3
1 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ import (
"io/ioutil"
"math/rand"
"os"
"path"
"path/filepath"
"regexp"
"strconv"
@ -58,7 +57,7 @@ var _ = SynchronizedBeforeSuite(func() []byte {
}
if parsedEnv.ConcourseChartDir == "" {
parsedEnv.ConcourseChartDir = path.Join(parsedEnv.ChartsDir, "stable/concourse")
parsedEnv.ConcourseChartDir = parsedEnv.ChartsDir
}
By("Checking if kubectl has a context set")