From: gfx Date: Fri, 25 Sep 2009 11:08:50 +0000 (+0900) Subject: Fix a test: package B conflicts the B module X-Git-Tag: 0.35~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bf8e5b90e442d6ec7dbb837a051f547d685ee2e9;hp=7ca5c5fb6e084d9c57bc022b336458afc74c6847;p=gitmo%2FMouse.git Fix a test: package B conflicts the B module --- diff --git a/t/025-more-isa.t b/t/025-more-isa.t index 3e18e96..3485956 100755 --- a/t/025-more-isa.t +++ b/t/025-more-isa.t @@ -74,7 +74,7 @@ do { package A; our @VERSION; - package B; + package Bx; # 'B' conflicts the B module our $VERSION = 1; package C; @@ -105,7 +105,7 @@ do { ); }; -for ('B', 'D'..'E', 'G::H') { +for ('Bx', 'D'..'E', 'G::H') { lives_ok { ClassNameTests->new(class => $_); };