From: Vincent Pit Date: Sun, 15 Feb 2009 10:59:50 +0000 (+0100) Subject: Two typos in test descriptions X-Git-Tag: v0.05~5 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fsubs-auto.git;a=commitdiff_plain;h=712288c4bcd044c2bf8f3d83a10fd97cbd05d523 Two typos in test descriptions --- diff --git a/t/10-base.t b/t/10-base.t index d822d55..249fe0f 100644 --- a/t/10-base.t +++ b/t/10-base.t @@ -161,7 +161,7 @@ _got_undefined('qux', __LINE__-1); isnt(*{'::yay'}{CODE}, undef, 'yay is defined'); isnt(*{'::foo'}{CODE}, undef, 'foo is defined'); is(*{'::flip'}{CODE}, undef, 'flip isn\'t defined'); - isnt(*{'::flop'}{CODE}, undef, 'flip is defined'); + isnt(*{'::flop'}{CODE}, undef, 'flop is defined'); is(*{'::qux'}{CODE}, undef, 'qux isn\'t defined'); isnt(*{'::blech'}{CODE}, undef, 'blech is defined'); isnt(*{'::wut'}{CODE}, undef, 'wut is defined'); @@ -291,7 +291,7 @@ _got_undefined('blech', 1, eval => 1); isnt(*{::foo}{CODE}, undef, 'foo is defined'); # calls foo is($foo, '::foo', 'foo was called'); is(*{::flip}{CODE}, undef, 'flip isn\'t defined'); - isnt(*{::flop}{CODE}, undef, 'flip is defined'); + isnt(*{::flop}{CODE}, undef, 'flop is defined'); is(*{::qux}{CODE}, undef, 'qux isn\'t defined'); isnt(*{::blech}{CODE}, undef, 'blech is defined'); isnt(*{::wut}{CODE}, undef, 'wut is defined');