diff options
Diffstat (limited to 't/tap-missing-plan-and-bad-exit.sh')
-rwxr-xr-x | t/tap-missing-plan-and-bad-exit.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/tap-missing-plan-and-bad-exit.sh b/t/tap-missing-plan-and-bad-exit.sh index 31a702c3b..ddd74c8a7 100755 --- a/t/tap-missing-plan-and-bad-exit.sh +++ b/t/tap-missing-plan-and-bad-exit.sh @@ -19,7 +19,7 @@ # plan, then the driver reports both "missing plan" and "exited with # non-zero status" errors. -. ./defs || Exit 1 +. ./defs || exit 1 cat > foo.test <<END #!/bin/sh @@ -32,7 +32,7 @@ chmod a+x foo.test . "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh" -$MAKE check >stdout && { cat stdout; Exit 1; } +$MAKE check >stdout && { cat stdout; exit 1; } cat stdout count_test_results total=2 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=2 |