From 4bb94bf200d59dc256c63a9fbbf1b69bcda2f2c1 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Tue, 19 Sep 2023 15:34:16 +0200 Subject: [PATCH] [ticket/17176] Fix functional test after rebase PHPBB3-17176 --- tests/functional/extension_controller_test.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/functional/extension_controller_test.php b/tests/functional/extension_controller_test.php index b4518cfa23..65e726c484 100644 --- a/tests/functional/extension_controller_test.php +++ b/tests/functional/extension_controller_test.php @@ -105,8 +105,7 @@ class phpbb_functional_extension_controller_test extends phpbb_functional_test_c { $crawler = self::request('GET', 'app.php/foo/baz', array(), false); $this->assert_response_html(500); - $this->assertStringContainsString('Controller "foo\bar\controller\controller::baz()" requires that you provide a value for the "$test" argument', $crawler->filter('body')->text()); - $this->phpbb_extension_manager->purge('foo/bar'); + $this->assertStringContainsString('Controller "foo\bar\controller\controller::baz" requires that you provide a value for the "$test" argument', $crawler->filter('body')->text()); } /**