Fix a test: package B conflicts the B module
[gitmo/Mouse.git] / t / 025-more-isa.t
index 3e18e96..3485956 100755 (executable)
@@ -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 => $_);
     };