summaryrefslogtreecommitdiffstats
path: root/t/20-inheritance.t
diff options
context:
space:
mode:
Diffstat (limited to 't/20-inheritance.t')
-rw-r--r--t/20-inheritance.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/20-inheritance.t b/t/20-inheritance.t
index 2324673..b1517e8 100644
--- a/t/20-inheritance.t
+++ b/t/20-inheritance.t
@@ -7,7 +7,7 @@ use Test::Moose;
{
package Parent;
use Moose;
- use MooseX::Bread::Board;
+ use Bread::Board::Declare;
has foo => (
is => 'ro',
@@ -29,7 +29,7 @@ use Test::Moose;
{
package Child;
use Moose;
- use MooseX::Bread::Board;
+ use Bread::Board::Declare;
extends 'Parent';