Skip to content

Commit 1accd07

Browse files
committed
string
1 parent 0a2c521 commit 1accd07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

e2e/install_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ func TestSingleNodeInstallationAlmaLinux8(t *testing.T) {
7575

7676
out, err := exec.Command("bash", "-c", "echo $PATH").CombinedOutput()
7777
fmt.Println(err)
78-
fmt.Println(out)
78+
fmt.Println(string(out))
7979

8080
out, err = exec.Command("which", "ssh").CombinedOutput()
8181
fmt.Println(err)
82-
fmt.Println(out)
82+
fmt.Println(string(out))
8383

8484
out, err = exec.Command("which", "scp").CombinedOutput()
8585
fmt.Println(err)
86-
fmt.Println(out)
86+
fmt.Println(string(out))
8787

8888
tc := cmx.NewCluster(&cmx.ClusterInput{
8989
T: t,

0 commit comments

Comments
 (0)