summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-05-29 16:37:51 -0500
committerJesse Luehrs <doy@tozt.net>2009-05-29 16:37:51 -0500
commit62eab4ab4c140c8916539d4340afe29bdab01853 (patch)
tree54fbf3278bf24e544e05c9398dba57836cdc4446 /t
parent19a2131e95f845d5f561aa236fa84ad8bba23611 (diff)
downloadmoosex-nonmoose-62eab4ab4c140c8916539d4340afe29bdab01853.tar.gz
moosex-nonmoose-62eab4ab4c140c8916539d4340afe29bdab01853.zip
Foo::Moose2, not Foo::Moose
Diffstat (limited to 't')
-rw-r--r--t/006-disable.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/006-disable.t b/t/006-disable.t
index aea55ec..6d652ab 100644
--- a/t/006-disable.t
+++ b/t/006-disable.t
@@ -28,6 +28,6 @@ Foo::Moose->meta->make_immutable;
isnt($method, Foo::Moose->meta->get_method('new'),
'make_immutable replaced the constructor with an inlined version');
my $method2 = Foo::Moose2->meta->get_method('new');
-Foo::Moose->meta->make_immutable(inline_constructor => 0);
+Foo::Moose2->meta->make_immutable(inline_constructor => 0);
is($method2, Foo::Moose2->meta->get_method('new'),
'make_immutable doesn\'t replace the constructor if we ask it not to');