1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

Merge pull request #4504 from VSEphpbb/ticket/14855

[ticket/14855] Update notification and PM alert bubbles
This commit is contained in:
Marc Alexander
2016-11-12 19:30:34 +01:00
5 changed files with 31 additions and 14 deletions

View File

@@ -82,6 +82,6 @@ class phpbb_functional_notification_test extends phpbb_functional_test_case
// Get form token
$link = $crawler->selectLink($this->lang('NOTIFICATIONS_MARK_ALL_READ'))->link()->getUri();
$crawler = self::request('GET', substr($link, strpos($link, 'ucp.')));
$this->assertEquals(0, $crawler->filter('#notification_list_button strong')->text());
$this->assertCount(0, $crawler->filter('#notification_list_button strong'));
}
}