From 116d154011db1aa5c1e416c85b97f51ce51b0c4e Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Wed, 5 Feb 2020 22:34:23 -0700 Subject: add missing parens Signed-off-by: Sean Whitton --- t/10_init.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } -- cgit v1.2.3