aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-08-28 15:52:25 +0200
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-08-28 15:52:25 +0200
commit23a5296e9032a2413c56dda2365d6e05cb2e0978 (patch)
tree781e5c336faf451485c2828d6528dde9d96b1ecf /t
parent0a05ec8ac536c188a9c055570fd93130e7fbc580 (diff)
downloadsbotools-23a5296e9032a2413c56dda2365d6e05cb2e0978.tar.xz
26-race-sbocheck: $logfile is a dir, so rmdir instead of unlink
Diffstat (limited to 't')
-rwxr-xr-xt/26-race-sbocheck.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/26-race-sbocheck.t b/t/26-race-sbocheck.t
index 39bc312..d9272ec 100755
--- a/t/26-race-sbocheck.t
+++ b/t/26-race-sbocheck.t
@@ -27,5 +27,5 @@ plan tests => 2;
like ($out, qr/\QUnable to open $logfile./, "sbocheck's print_output() gave correct output");
is ($exit, undef, "sbocheck's print_output() didn't exit");
- unlink $logfile;
+ rmdir $logfile;
}