@@ -401,8 +401,6 @@ func TestDeployCreate_AskQuestions(t *testing.T) {
401401 },
402402 })
403403
404- // doesn't lookup the progression or env names because it already has them
405-
406404 // now it's going to go looking for prompted variables; we don't have any prompted variables here so it skips
407405 api .ExpectRequest (t , "GET" , "/api/Spaces-1/variables/" + variableSnapshotNoVars .ID ).RespondWith (& variableSnapshotNoVars )
408406
@@ -445,7 +443,7 @@ func TestDeployCreate_AskQuestions(t *testing.T) {
445443 options := & executor.TaskOptionsDeployRelease {
446444 ProjectName : "fire project" ,
447445 ReleaseVersion : "2.1" ,
448- Environments : []string {"Ephemeral Environment " },
446+ Environments : []string {"ephemeral environment " },
449447 }
450448
451449 errReceiver := testutil .GoBegin (func () error {
@@ -483,7 +481,7 @@ func TestDeployCreate_AskQuestions(t *testing.T) {
483481 assert .Equal (t , heredoc .Doc (`
484482 Project Fire Project
485483 Release 2.1
486- Environments Ephemeral Environment
484+ Environments ephemeral environment
487485 ` ), stdout .String ())
488486 stdout .Reset ()
489487
@@ -511,7 +509,7 @@ func TestDeployCreate_AskQuestions(t *testing.T) {
511509 assert .Equal (t , & executor.TaskOptionsDeployRelease {
512510 ProjectName : "Fire Project" ,
513511 ReleaseVersion : "2.1" ,
514- Environments : []string {"Ephemeral Environment " },
512+ Environments : []string {"ephemeral environment " },
515513 GuidedFailureMode : "" ,
516514 Variables : make (map [string ]string , 0 ),
517515 ReleaseID : release21 .ID ,
0 commit comments