diff options
author | Matt Friedman <maf675@gmail.com> | 2016-11-05 19:41:08 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-11-05 19:41:08 -0700 |
commit | af2bf4ef3662fbc7e84d36e9f638317d3d28123d (patch) | |
tree | b8a54b6e7f16a431d081621f3c358b0472e4c89f /tests/functional/notification_test.php | |
parent | 87209fdd0697f13f0d28e70ffd31ce7d3c9c2104 (diff) | |
download | forums-af2bf4ef3662fbc7e84d36e9f638317d3d28123d.tar forums-af2bf4ef3662fbc7e84d36e9f638317d3d28123d.tar.gz forums-af2bf4ef3662fbc7e84d36e9f638317d3d28123d.tar.bz2 forums-af2bf4ef3662fbc7e84d36e9f638317d3d28123d.tar.xz forums-af2bf4ef3662fbc7e84d36e9f638317d3d28123d.zip |
[ticket/14855] Update notification functional test
PHPBB3-14855
Diffstat (limited to 'tests/functional/notification_test.php')
-rw-r--r-- | tests/functional/notification_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/notification_test.php b/tests/functional/notification_test.php index ec03f7a6a4..d4c61cc062 100644 --- a/tests/functional/notification_test.php +++ b/tests/functional/notification_test.php @@ -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')); } } |