From 7dc6ceb581ead4d41211ada8bc5238b368982d06 Mon Sep 17 00:00:00 2001 From: swag Date: Tue, 26 Jul 2022 22:09:36 -0400 Subject: [PATCH] Revert "Revert "Only need the first few messages for this test"" This reverts commit 3c513e4ad9a014c0fe890d2affb3c75009871467. --- t/message.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/message.t b/t/message.t index 0cd5d8c..a44e7c3 100644 --- a/t/message.t +++ b/t/message.t @@ -12,10 +12,10 @@ my $t = Test::Mojo->new($script); $t->ua->max_redirects(0); # This one is not spam -$t->get_ok('/message/8')->status_is(200) +$t->get_ok('/message/3')->status_is(200) ->text_is(h2 => 'Messages from the World Wide Web'); # This one _is_ spam -$t->get_ok('/message/19')->status_is(200) +$t->get_ok('/message/2')->status_is(200) ->text_is(h2 => 'Messages from the World Wide Web'); # This one is deleted $t->get_ok('/message/1')->status_is(404)