summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-02-05 22:34:23 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-02-05 22:34:23 -0700
commit116d154011db1aa5c1e416c85b97f51ce51b0c4e (patch)
treebbaade9810e6d428d1250d5d7869d4a646e82a1f
parent5da99adc1049439dc391736f3e5b1d637e945623 (diff)
downloadp5-Git-Annex-116d154011db1aa5c1e416c85b97f51ce51b0c4e.tar.gz
add missing parens
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rwxr-xr-xt/10_init.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/10_init.t b/t/10_init.t
index b8f67fa..e646b14 100755
--- a/t/10_init.t
+++ b/t/10_init.t
@@ -20,7 +20,7 @@ use File::Spec::Functions qw(catfile file_name_is_absolute);
$annex = Git::Annex->new;
is $annex->toplevel, $temp, "constructor sets toplevel to pwd";
$annex = Git::Annex->new("foo");
- ok file_name_is_absolute $annex->toplevel,
+ ok file_name_is_absolute($annex->toplevel),
"it converts a relative path to absolute";
ok !-d $annex->toplevel, "it permits initialisation in a nonexistent dir";
}