From 2a7ee5f97f4a1cb40111c130bd6ba29c00fcd8e5 Mon Sep 17 00:00:00 2001
From: Father Chrysostomos <[email protected]>
Date: Fri, 3 Oct 2014 22:42:22 +0200
Subject: [PATCH] fix for test failure with bleadperl

"use strict" error messages changed. Fix from
https://github.com/doy/parse-keyword/issues/9
---
t/error.t | 1 +
1 file changed, 1 insertion(+)

diff --git a/t/error.t b/t/error.t
index 5682052..d95ad1f 100644
--- a/t/error.t
+++ b/t/error.t
@@ -59,6 +59,7 @@ SKIP: {
        system($^X, (map { qq[-I$_] } @INC), 't/error.pl')
    });
    is($out, '');
+    $err =~ s/explicit package name \([^)]+\)/explicit package name/;
    is(
        $err,
        <<'ERR'
--
1.8.3.4