From: Shawn M Moore Date: Wed, 11 Jun 2008 05:20:12 +0000 (+0000) Subject: Whoops, was loading Moose instead of Mouse.. X-Git-Tag: 0.04~30 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=043a69fbe5f7bf8f7611e04083281d38f58db264;hp=2230a6a3776852f5d73e634c9ddd909d95ca4d7d;p=gitmo%2FMouse.git Whoops, was loading Moose instead of Mouse.. --- diff --git a/t/014-build.t b/t/014-build.t index 6c10857..0d95047 100644 --- a/t/014-build.t +++ b/t/014-build.t @@ -7,7 +7,7 @@ my @called; do { package Class; - use Moose; + use Mouse; sub BUILD { push @called, 'Class::BUILD'; @@ -20,7 +20,7 @@ do { } package Child; - use Moose; + use Mouse; extends 'Class'; sub BUILD {