Skip to content

Commit

Permalink
CAF::Path:: fix missing rmtree argument in path.t
Browse files Browse the repository at this point in the history
  • Loading branch information
jouvin committed Mar 7, 2017
1 parent 122c222 commit 65121e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/perl/path.t
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ init_exception("existence tests");
# Tests without NoAction
$CAF::Object::NoAction = 0;

rmtree if -d $basetest;
rmtree ($basetest) if -d $basetest;
ok(! $mc->directory_exists($basetest), "directory_exists false on missing directory");
ok(! $mc->file_exists($basetest), "file_exists false on missing directory");
ok(! $mc->any_exists($basetest), "any_exists false on missing directory");
Expand Down

0 comments on commit 65121e2

Please sign in to comment.