Skip to content

Commit

Permalink
Merge pull request #106 from jonathanstowe/fix-flap
Browse files Browse the repository at this point in the history
Use hash comparison to be order independent.
  • Loading branch information
tokuhirom committed Aug 5, 2018
2 parents 7572f3f + 29f95da commit fe89509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/Crust-Middleware/error-document.t
Expand Up @@ -77,7 +77,7 @@ subtest {
my @ret = await $app(%env);

is @ret[0], 500;
is-deeply @ret[1], ['p6wx.errordocument.Content-Type' => 'text/plain', :Content-Type('text/plain')];
is-deeply @ret[1].Hash, {'p6wx.errordocument.Content-Type' => 'text/plain', :Content-Type('text/plain')};
isa-ok @ret[2], Array;
}, 'Sub Request';

Expand Down

0 comments on commit fe89509

Please sign in to comment.