From 7e11f865c45c247cab5c5ed105414645f267a986 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 14 Jul 2015 07:57:31 -0700 Subject: Fix a broken test. One of the test opens the "README" file to serves the content. The file has been renamed to "README.md" but the test was not updated to reflect the change. --- t/01_basic.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/01_basic.t b/t/01_basic.t index d1db7ba..0195f5c 100644 --- a/t/01_basic.t +++ b/t/01_basic.t @@ -34,7 +34,7 @@ my $unmodified_handler = builder { my $file_handler = builder { enable "Plack::Middleware::ETag"; - open my $fh, 'README'; + open my $fh, 'README.md'; sub {[200, ['Content-Type' => 'text/html', ], $fh]}; }; -- cgit 1.4.1