Merge pull request #69377 from justinsb/avoid_spurious_highlighting

e2e: change test strings to avoid error highlighting
This commit is contained in:
k8s-ci-robot 2018-10-05 18:47:51 -07:00 committed by GitHub
commit 0abb0f533a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ var _ = SIGDescribe("SSH", func() {
// Keep this test first - this variant runs on all nodes.
{`echo "Hello from $(whoami)@$(hostname)"`, false, "", "", 0, nil},
{`echo "foo" | grep "bar"`, true, "", "", 1, nil},
{`echo "Out" && echo "Error" >&2 && exit 7`, true, "Out", "Error", 7, nil},
{`echo "stdout" && echo "stderr" >&2 && exit 7`, true, "stdout", "stderr", 7, nil},
}
for i, testCase := range testCases {