diff --git a/tests/functional/portal_no_error_test.php b/tests/functional/portal_no_error_test.php index d527206b..4fe68974 100644 --- a/tests/functional/portal_no_error_test.php +++ b/tests/functional/portal_no_error_test.php @@ -22,6 +22,6 @@ class phpbb_functional_portal_no_error_test extends \board3\portal\tests\testfra public function test_vanilla_board() { - $crawler = self::request('GET', 'app.php?portal'); + $crawler = self::request('GET', 'app.php/portal'); } } diff --git a/tests/functional/portal_vote_poll_test.php b/tests/functional/portal_vote_poll_test.php index 0059004a..ccd0d6df 100644 --- a/tests/functional/portal_vote_poll_test.php +++ b/tests/functional/portal_vote_poll_test.php @@ -30,13 +30,13 @@ class phpbb_functional_portal_vote_poll_test extends \board3\portal\tests\testfr if (isset($data)) { - $crawler = self::request('GET', 'app.php?portal'); + $crawler = self::request('GET', 'app.php/portal'); $form = $crawler->selectButton('Submit vote')->form(); $form->setValues(array('vote_id' => array(1))); $crawler = self::submit($form); // no errors should appear on portal - $crawler = self::request('GET', 'app.php?portal'); + $crawler = self::request('GET', 'app.php/portal'); } } }