diff --git a/t/Plack-MIME/fallback.t b/t/Plack-MIME/fallback.t index b7d16b7cf..6f280801e 100644 --- a/t/Plack-MIME/fallback.t +++ b/t/Plack-MIME/fallback.t @@ -3,9 +3,9 @@ use Test::Requires qw(MIME::Types); use Plack::MIME; use MIME::Types 'by_suffix'; -is( Plack::MIME->mime_type(".vcd"), undef ); +is( Plack::MIME->mime_type(".ncm"), undef ); Plack::MIME->set_fallback(sub { (by_suffix $_[0])[0] }); -is( Plack::MIME->mime_type(".vcd"), "application/x-cdlink" ); +is( Plack::MIME->mime_type(".ncm"), "application/vnd.nokia.configuration-message" ); done_testing;