From 4f892d19e7b57db09a338f21cf2d414b5d0fe00a Mon Sep 17 00:00:00 2001 From: Tom Bloor Date: Wed, 19 Apr 2017 00:06:30 +0100 Subject: [PATCH] fix basic test --- t/basic.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/basic.t b/t/basic.t index 97c58b4..676340c 100644 --- a/t/basic.t +++ b/t/basic.t @@ -9,6 +9,6 @@ BEGIN { } my $t = Test::Mojo->new("Pear::LocalLoop"); -$t->get_ok('/api/login')->status_is(200)->content_like(qr/login page/); +$t->get_ok('/')->status_is(200)->content_like(qr/login/i); done_testing();