mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 23:07:39 +02:00
[ticket/14497] Do not check for doctype on index and use correct return
PHPBB3-14497
This commit is contained in:
@@ -18,11 +18,11 @@ class phpbb_functional_visit_installer_test extends phpbb_functional_test_case
|
|||||||
{
|
{
|
||||||
public function test_visit_installer()
|
public function test_visit_installer()
|
||||||
{
|
{
|
||||||
self::request('GET', 'install/');
|
self::request('GET', 'install/', [], false);
|
||||||
$this->assertContains('installation system', $this->get_content());
|
$this->assertContains('<meta http-equiv="refresh" content="0; url=./app.php" />', $this->get_content());
|
||||||
|
|
||||||
self::request('GET', 'install/index.html');
|
self::request('GET', 'install/index.html', [], false);
|
||||||
$this->assertContains('installation system', $this->get_content());
|
$this->assertContains('<meta http-equiv="refresh" content="0; url=./app.php" />', $this->get_content());
|
||||||
|
|
||||||
self::request('GET', 'install/app.php');
|
self::request('GET', 'install/app.php');
|
||||||
$this->assertContains('installation system', $this->get_content());
|
$this->assertContains('installation system', $this->get_content());
|
||||||
|
Reference in New Issue
Block a user