diff --git a/client/client_test.go b/client/client_test.go index 835cbe4..5449943 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -76,8 +76,7 @@ type zshTester struct { } func (z zshTester) RunInteractiveShell(t *testing.T, script string) string { - // TODO: make this strict - res, err := z.RunInteractiveShellRelaxed(t, script) + res, err := z.RunInteractiveShellRelaxed(t, "set -eo pipefail\n"+script) if err != nil { t.Fatal(err) }