Fix author test fail
Florian Ragwitz [Thu, 26 Aug 2010 17:09:18 +0000 (19:09 +0200)]
t/110_sort_usage_by_attr_order.t

index 1e41e79..c12f4b6 100644 (file)
@@ -27,13 +27,12 @@ use Test::Exception;
 
 my $obj = MyClass->new_with_options();
 
-my $expected = <<USAGE;
+my $expected = <<"USAGE";
 usage: 110_sort_usage_by_attr_order.t [-?] [long options...]
-       -? --usage --help  Prints this usage information.
-       --foo              Documentation for "foo"
-       --bar              Documentation for "bar"
-       --baz              Documentation for "baz"
+\t-? --usage --help  Prints this usage information.
+\t--foo              Documentation for "foo"
+\t--bar              Documentation for "bar"
+\t--baz              Documentation for "baz"
 USAGE
 
 is($obj->usage->text, $expected, 'Usage text has nicely sorted options');
-