File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package e2e
2
2
3
3
import (
4
4
"fmt"
5
- "go/printer"
6
5
"io/ioutil"
7
6
"net/http"
8
7
"os"
@@ -27,8 +26,8 @@ func TestClusterJoin(t *testing.T) {
27
26
password := "admin"
28
27
29
28
imageRepo , repoPres := os .LookupEnv ("dockerRepository" )
30
- imageTag , tagPres := os .LookupEnv ("dockerVersion" )
31
-
29
+ imageTag , tagPres := os .LookupEnv ("dockerVersion" )
30
+
32
31
if ! repoPres {
33
32
imageRepo = "marklogic-centos/marklogic-server-centos"
34
33
t .Logf ("No imageRepo variable present, setting to default value: " + imageRepo )
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ package e2e
3
3
import (
4
4
"crypto/tls"
5
5
"fmt"
6
+ "os"
6
7
"path/filepath"
7
8
"strings"
8
9
"testing"
9
10
"time"
10
- "os"
11
11
12
12
"github.com/gruntwork-io/terratest/modules/helm"
13
13
http_helper "github.com/gruntwork-io/terratest/modules/http-helper"
@@ -22,8 +22,8 @@ func TestHelmInstall(t *testing.T) {
22
22
t .Fatalf (e .Error ())
23
23
}
24
24
imageRepo , repoPres := os .LookupEnv ("dockerRepository" )
25
- imageTag , tagPres := os .LookupEnv ("dockerVersion" )
26
-
25
+ imageTag , tagPres := os .LookupEnv ("dockerVersion" )
26
+
27
27
if ! repoPres {
28
28
imageRepo = "marklogic-centos/marklogic-server-centos"
29
29
t .Logf ("No imageRepo variable present, setting to default value: " + imageRepo )
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ package e2e
3
3
import (
4
4
"crypto/tls"
5
5
"fmt"
6
+ "os"
6
7
"path/filepath"
7
8
"strings"
8
9
"testing"
9
10
"time"
10
- "os"
11
11
12
12
"github.com/gruntwork-io/terratest/modules/helm"
13
13
http_helper "github.com/gruntwork-io/terratest/modules/http-helper"
@@ -22,8 +22,8 @@ func TestHelmUpgrade(t *testing.T) {
22
22
t .Fatalf (e .Error ())
23
23
}
24
24
imageRepo , repoPres := os .LookupEnv ("dockerRepository" )
25
- imageTag , tagPres := os .LookupEnv ("dockerVersion" )
26
-
25
+ imageTag , tagPres := os .LookupEnv ("dockerVersion" )
26
+
27
27
if ! repoPres {
28
28
imageRepo = "marklogic-centos/marklogic-server-centos"
29
29
t .Logf ("No imageRepo variable present, setting to default value: " + imageRepo )
You can’t perform that action at this time.
0 commit comments