summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChase Whitener <cwhitener@gmail.com>2023-05-02 21:08:45 -0400
committerOlaf Alders <olaf@wundersolutions.com>2023-05-03 06:29:40 -0400
commit07e636a9da28e382fa9382b444c182c55301818f (patch)
tree8f2b15cb961c68179d1bf20f40419dd787e715b0
parent71790c03013bacd887491d5c4a550dafad39423b (diff)
downloaduri-07e636a9da28e382fa9382b444c182c55301818f.tar.gz
Fix the defined check to use parensHEADmaster
-rw-r--r--t/query.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/query.t b/t/query.t
index e855153..403975f 100644
--- a/t/query.t
+++ b/t/query.t
@@ -82,7 +82,7 @@ is $u, "?a=1;b=2";
$u->query('a&b=2');
@q = $u->query_form;
-is join(":", map { defined ? $_ : '' } @q), "a::b:2";
+is join(":", map { defined($_) ? $_ : '' } @q), "a::b:2";
ok !defined($q[1]);
$u->query_form(@q);