1313 configSetCmd = "config:set FOO=讲台 --app={{.AppName}}"
1414 configSet2Cmd = "config:set FOO=10 --app={{.AppName}}"
1515 configSet3Cmd = "config:set POWERED_BY=\" the Deis team\" --app={{.AppName}}"
16- configSet4Cmd = "config:set CAR='`star' --app={{.AppName}}"
1716 configSetBuildpackCmd = "config:set BUILDPACK_URL=https://github.com/heroku/heroku-buildpack-go#98f37cc --app={{.AppName}}"
1817 configUnsetCmd = "config:unset FOO --app={{.AppName}}"
1918)
@@ -46,9 +45,6 @@ func configSetup(t *testing.T) *utils.DeisTestConfig {
4645 // ensure envvars with spaces work fine on `git push`
4746 // https://github.com/deis/deis/issues/2477
4847 utils .Execute (t , configSet3Cmd , cfg , false , "the Deis team" )
49- // ensure envvars with backticks work too
50- // https://github.com/deis/deis/issues/2980
51- utils .Execute (t , configSet4Cmd , cfg , false , "`star" )
5248 // ensure custom buildpack URLS are in order
5349 utils .Execute (t , configSetBuildpackCmd , cfg , false , "https://github.com/heroku/heroku-buildpack-go#98f37cc" )
5450 utils .Execute (t , gitPushCmd , cfg , false , "" )
@@ -66,13 +62,13 @@ func configListTest(
6662
6763func configSetTest (t * testing.T , params * utils.DeisTestConfig ) {
6864 utils .Execute (t , configSetCmd , params , false , "讲台" )
69- utils .CheckList (t , appsInfoCmd , params , "(v6 )" , false )
65+ utils .CheckList (t , appsInfoCmd , params , "(v5 )" , false )
7066 utils .Execute (t , configSet2Cmd , params , false , "10" )
71- utils .CheckList (t , appsInfoCmd , params , "(v7 )" , false )
67+ utils .CheckList (t , appsInfoCmd , params , "(v6 )" , false )
7268}
7369
7470func configUnsetTest (t * testing.T , params * utils.DeisTestConfig ) {
7571 utils .Execute (t , configUnsetCmd , params , false , "" )
76- utils .CheckList (t , appsInfoCmd , params , "(v8 )" , false )
72+ utils .CheckList (t , appsInfoCmd , params , "(v7 )" , false )
7773 utils .CheckList (t , "run env --app={{.AppName}}" , params , "FOO" , true )
7874}
0 commit comments