From: Dave Rolsky Date: Fri, 5 Dec 2008 16:48:07 +0000 (+0000) Subject: Spell coerce like a proper Merkan X-Git-Tag: 0.62_02~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dd654de5ebb6f07a5ae5b2cb6b90fd2145061da5;p=gitmo%2FMoose.git Spell coerce like a proper Merkan --- diff --git a/t/300_immutable/004_inlined_constructors_n_types.t b/t/300_immutable/004_inlined_constructors_n_types.t index ec942e2..9f276d6 100644 --- a/t/300_immutable/004_inlined_constructors_n_types.t +++ b/t/300_immutable/004_inlined_constructors_n_types.t @@ -44,8 +44,8 @@ for (1..2) { my $mutable_string = $is_immutable ? 'immutable' : 'mutable'; lives_ok { my $f = Foo->new(foo => 10, bar => "Hello World", baz => 10, zot => 4); - is($f->moo, 69, "Type coersion works as expected on default ($mutable_string)"); - is($f->boo, 69, "Type coersion works as expected on builder ($mutable_string)"); + is($f->moo, 69, "Type coercion works as expected on default ($mutable_string)"); + is($f->boo, 69, "Type coercion works as expected on builder ($mutable_string)"); } "... this passes the constuctor correctly ($mutable_string)"; lives_ok {