diff options
Diffstat (limited to 't/app/controller')
-rw-r--r-- | t/app/controller/index.t | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/app/controller/index.t b/t/app/controller/index.t index 691eb0007..3f3aed48e 100644 --- a/t/app/controller/index.t +++ b/t/app/controller/index.t @@ -92,9 +92,10 @@ subtest "prefilters /around if user has categories" => sub { }; subtest "prefilters /around if filter_category given in URL" => sub { - $mech->get_ok('/?filter_category=MyUniqueTestCategory'); - # NB can't use visible_form_values because categories field is hidden + $mech->get_ok('/?filter_category=MyUniqueTestCategory&filter_group=MyUniqueTestGroup'); + # NB can't use visible_form_values because fields are hidden $mech->content_contains("MyUniqueTestCategory"); + $mech->content_contains("MyUniqueTestGroup"); }; END { |