From: Dave Rolsky Date: Mon, 12 Jan 2009 00:48:51 +0000 (+0000) Subject: Silence another warning X-Git-Tag: 0.65~24 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3fe3513471eda5b33418f8665f7ec20ecb58c589;p=gitmo%2FMoose.git Silence another warning --- diff --git a/t/100_bugs/020_super_recursion.t b/t/100_bugs/020_super_recursion.t index 92ec997..913765d 100644 --- a/t/100_bugs/020_super_recursion.t +++ b/t/100_bugs/020_super_recursion.t @@ -35,7 +35,7 @@ use Test::More 'no_plan'; sub bar { ::BAIL_OUT('B::bar called twice') if $main::seen{'B::bar'}++; - return 'b' . super(); + return 'b' . ( super() || '' ); } override baz => sub {