5.005_04 compat
[p5sagit/Try-Tiny.git] / t / basic.t
index bbef5d6..400b1fb 100644 (file)
--- a/t/basic.t
+++ b/t/basic.t
@@ -70,7 +70,7 @@ throws_ok {
        is( $@, "magic", '$@ untouched' );
 }
 
-is( scalar(try { qw(foo bar gorch) }), "gorch", "scalar context" ); 
+is( scalar(try { "foo", "bar", "gorch" }), "gorch", "scalar context" );
 is_deeply( [ try {qw(foo bar gorch)} ], [qw(foo bar gorch)], "list context" );