From 4e717c1725474265a694bd300b024030769dbd85 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 5 Mar 2016 22:19:03 +0100 Subject: [PATCH] [ticket/14497] Do not check for doctype on index and use correct return PHPBB3-14497 --- tests/functional/visit_installer_test.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/functional/visit_installer_test.php b/tests/functional/visit_installer_test.php index 80336bd410..b4a75c0b51 100644 --- a/tests/functional/visit_installer_test.php +++ b/tests/functional/visit_installer_test.php @@ -18,11 +18,11 @@ class phpbb_functional_visit_installer_test extends phpbb_functional_test_case { public function test_visit_installer() { - self::request('GET', 'install/'); - $this->assertContains('installation system', $this->get_content()); + self::request('GET', 'install/', [], false); + $this->assertContains('', $this->get_content()); - self::request('GET', 'install/index.html'); - $this->assertContains('installation system', $this->get_content()); + self::request('GET', 'install/index.html', [], false); + $this->assertContains('', $this->get_content()); self::request('GET', 'install/app.php'); $this->assertContains('installation system', $this->get_content());