@@ -699,9 +699,9 @@ func (o *OctopusContainerTest) Act(t *testing.T, container *OctopusContainer, te
699
699
700
700
// ActWithCustomSpace initialises Octopus and MSSQL with a custom directory holding the module to create the initial space
701
701
func (o * OctopusContainerTest ) ActWithCustomSpace (t * testing.T , container * OctopusContainer , initialiseModuleDir string , terraformModuleDir string , initialiseVars []string , populateVars []string ) (string , error ) {
702
- t .Log ("POPULATING TEST SPACE" )
703
-
704
702
spaceName := strings .ReplaceAll (fmt .Sprint (uuid .New ()), "-" , "" )[:20 ]
703
+ t .Log ("POPULATING TEST SPACE " + spaceName )
704
+
705
705
err := o .InitialiseOctopus (t , container , initialiseModuleDir , "" , terraformModuleDir , spaceName , initialiseVars , []string {}, populateVars )
706
706
707
707
if err != nil {
@@ -726,9 +726,9 @@ func (o *OctopusContainerTest) ActWithCustomSpace(t *testing.T, container *Octop
726
726
727
727
// ActWithCustomPrePopulatedSpace initialises Octopus and MSSQL with a custom directory holding the module to create the initial space and a module used to prepopulate the space
728
728
func (o * OctopusContainerTest ) ActWithCustomPrePopulatedSpace (t * testing.T , container * OctopusContainer , initialiseModuleDir string , prepopulateModuleDir string , terraformModuleDir string , initialiseVars []string , prePopulateVars []string , populateVars []string ) (string , error ) {
729
- t .Log ("POPULATING TEST SPACE" )
730
-
731
729
spaceName := strings .ReplaceAll (fmt .Sprint (uuid .New ()), "-" , "" )[:20 ]
730
+ t .Log ("POPULATING TEST SPACE " + spaceName )
731
+
732
732
err := o .InitialiseOctopus (t , container , initialiseModuleDir , prepopulateModuleDir , terraformModuleDir , spaceName , initialiseVars , prePopulateVars , populateVars )
733
733
734
734
if err != nil {
0 commit comments