Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Constant CPAN distribution.

Report information
The Basics
Id: 74803
Status: resolved
Priority: 0/
Queue: Constant

People
Owner: Nobody in particular
Requestors: TODDR [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.21
Fixed in: (no value)



Subject: t/constant.t breaks against blead
It looks like a recent typo in t/constant.t is checking $[ when it should be checking $]. Patch attached.
Subject: patch.txt
diff --git a/t/constant.t b/t/constant.t index d86a1eb..ba892b4 100644 --- a/t/constant.t +++ b/t/constant.t @@ -143,7 +143,7 @@ $TB->current_test($curr_test+5); SKIP: { skip $no_pseudohashes, 1 if $no_pseudohashes; - skip "doesn't work on 5.5.x", 1 if $[ < 5.006; + skip "doesn't work on 5.5.x", 1 if $] < 5.006; eval q{ CPHASH->{bar} }; like $@, qr/^No such pseudo-hash field/, "test missing pseudo-hash field"; }
My bad. blead is upstream so the fix is to produce a new release from blead.