Skip to content

Commit 5caf386

Browse files
committed
fix(tests): remove vagrant-specific regression test
1 parent 7a29b29 commit 5caf386

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

tests/ps_test.go

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ package tests
44

55
import (
66
"os"
7-
"os/exec"
87
"strings"
98
"testing"
109
"time"
@@ -72,18 +71,4 @@ func psScaleTest(t *testing.T, params *utils.DeisTestConfig, cmd string) {
7271
cmd = strings.Replace(cmd, "web", "cmd", 1)
7372
}
7473
utils.Execute(t, cmd, params, false, "")
75-
// Regression test for https://github.com/deis/deis/pull/1347
76-
// Ensure that systemd unitfile droppings are cleaned up.
77-
sshCmd := exec.Command("ssh",
78-
"-o", "StrictHostKeyChecking=no",
79-
"-o", "UserKnownHostsFile=/dev/null",
80-
"-o", "PasswordAuthentication=no",
81-
"core@deis."+params.Domain, "ls")
82-
out, err := sshCmd.Output()
83-
if err != nil {
84-
t.Fatal(err)
85-
}
86-
if strings.Contains(string(out), ".service") {
87-
t.Fatalf("systemd files left on filesystem: \n%s", out)
88-
}
8974
}

0 commit comments

Comments
 (0)