diff options
Diffstat (limited to 't/op/ver.t')
-rwxr-xr-x | t/op/ver.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/ver.t b/t/op/ver.t index b9ba5891f0..e248a48482 100755 --- a/t/op/ver.t +++ b/t/op/ver.t @@ -114,7 +114,7 @@ print "not " unless sprintf("%*vb", "##", v1.22.333.4444) print "ok $test\n"; ++$test; print "not " unless sprintf("%vd", join("", map { chr } - unpack "U*", v2001.2002.2003)) + unpack 'U*', pack('U*',2001,2002,2003))) eq '2001.2002.2003'; print "ok $test\n"; ++$test; |