diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-08-08 17:06:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-08 17:06:57 +0200 |
commit | d95557e429fe3979512b7bbed892fe0ec636324e (patch) | |
tree | 779768ac392d2d74502d1d7ef846c8523702bf45 /tests | |
parent | f8b13ecd604451eb853bf1d7d1f12aadc857e527 (diff) | |
parent | a24ed79f85b8163b8a10e07f2d5b2e280bd35f86 (diff) | |
download | nextcloud-server-d95557e429fe3979512b7bbed892fe0ec636324e.tar.gz nextcloud-server-d95557e429fe3979512b7bbed892fe0ec636324e.zip |
Merge pull request #33415 from nextcloud/fix/integration-test-notif
Fix integration tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/acceptance/features/bootstrap/NotificationsContext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/acceptance/features/bootstrap/NotificationsContext.php b/tests/acceptance/features/bootstrap/NotificationsContext.php index 86b17219c03..fb8ca2a354f 100644 --- a/tests/acceptance/features/bootstrap/NotificationsContext.php +++ b/tests/acceptance/features/bootstrap/NotificationsContext.php @@ -30,7 +30,7 @@ class NotificationsContext implements Context, ActorAwareInterface { * @return Locator */ public static function notificationsButton() { - return Locator::forThe()->css("#header .notifications .notifications-button")-> + return Locator::forThe()->css("#header #notifications.notifications-button")-> describedAs("Notifications button in the header"); } @@ -38,7 +38,7 @@ class NotificationsContext implements Context, ActorAwareInterface { * @return Locator */ public static function notificationsContainer() { - return Locator::forThe()->css("#header .notifications .notification-container")-> + return Locator::forThe()->css("#header #notifications .notification-container")-> describedAs("Notifications container"); } |