summaryrefslogtreecommitdiff
path: root/t/10_init.t
diff options
context:
space:
mode:
Diffstat (limited to 't/10_init.t')
-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";
}