mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/11711] Reduce size of tests and also test topic titles
PHPBB3-11711
This commit is contained in:
@@ -996,11 +996,16 @@ class phpbb_functional_test_case extends phpbb_test_case
|
||||
// Instead, I send it as a request with the submit button "post" set to true.
|
||||
$crawler = self::request('POST', $posting_url, $form_data);
|
||||
|
||||
if ($expected !== '')
|
||||
if ($expected !== '' && isset($this->lang[$expected]))
|
||||
{
|
||||
$this->assertContainsLang($expected, $crawler->filter('html')->text());
|
||||
return null;
|
||||
}
|
||||
else if ($expected !== '')
|
||||
{
|
||||
$this->assertContains($expected, $crawler->filter('html')->text());
|
||||
return null;
|
||||
}
|
||||
$url = $crawler->selectLink($form_data['subject'])->link()->getUri();
|
||||
|
||||
return array(
|
||||
|
Reference in New Issue
Block a user