mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/14855] Update notification and PM alert bubbles
Alternative implementation without removing notification from the DOM, but changing the class. So that style designers might have more options (show/not show). Fix tests. PHPBB3-14855
This commit is contained in:
parent
959e5fb79d
commit
41b3450f2f
1 changed files with 1 additions and 1 deletions
|
@ -82,6 +82,6 @@ class phpbb_functional_notification_test extends phpbb_functional_test_case
|
||||||
// Get form token
|
// Get form token
|
||||||
$link = $crawler->selectLink($this->lang('NOTIFICATIONS_MARK_ALL_READ'))->link()->getUri();
|
$link = $crawler->selectLink($this->lang('NOTIFICATIONS_MARK_ALL_READ'))->link()->getUri();
|
||||||
$crawler = self::request('GET', substr($link, strpos($link, 'ucp.')));
|
$crawler = self::request('GET', substr($link, strpos($link, 'ucp.')));
|
||||||
$this->assertCount(0, $crawler->filter('#notification_list_button strong'));
|
$this->assertEquals(0, $crawler->filter('#notification_list_button strong.badge.hidden')->text());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue