Sort keys in this test so it always runs in the same order
Andy Grundman [Fri, 5 Dec 2008 08:27:59 +0000 (08:27 +0000)]
t/live_engine_response_print.t

index b6c6446..85afc80 100644 (file)
@@ -15,7 +15,7 @@ my $expected = {
    three => "foo,bar,baz",
 };
 
-for my $action ( keys %{$expected} ) {
+for my $action ( sort keys %{$expected} ) {
     ok( my $response = request('http://localhost/engine/response/print/' . $action ),
         'Request' );
     ok( $response->is_success, "Response $action successful 2xx" );