From: Andy Grundman Date: Fri, 5 Dec 2008 08:27:59 +0000 (+0000) Subject: Sort keys in this test so it always runs in the same order X-Git-Tag: 5.8000_04~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=1e6db81d6a957f0a8a6067598d73c3134140e965 Sort keys in this test so it always runs in the same order --- diff --git a/t/live_engine_response_print.t b/t/live_engine_response_print.t index b6c6446..85afc80 100644 --- a/t/live_engine_response_print.t +++ b/t/live_engine_response_print.t @@ -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" );