diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-11-23 13:32:27 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-11-23 15:14:49 +0100 |
commit | c55054e2a512c99807998bd134779176f81f9fbc (patch) | |
tree | 8b759a1f2b4b8b7a5e343af97316bb41c88f1690 | |
parent | 6be19a5ca3de404dd16b584d622cd5075313f072 (diff) | |
download | nextcloud-server-c55054e2a512c99807998bd134779176f81f9fbc.tar.gz nextcloud-server-c55054e2a512c99807998bd134779176f81f9fbc.zip |
Rename "FilesSharingAppContext" to "PublicShareContext"
Having both "FilesAppSharingContext" and "FilesSharingAppContext" was
confusing, so "FilesSharingAppContext" was renamed to a more descriptive
name.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r-- | tests/acceptance/config/behat.yml | 4 | ||||
-rw-r--r-- | tests/acceptance/features/bootstrap/PublicShareContext.php (renamed from tests/acceptance/features/bootstrap/FilesSharingAppContext.php) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/acceptance/config/behat.yml b/tests/acceptance/config/behat.yml index 7d64e6a207c..5149180d9bd 100644 --- a/tests/acceptance/config/behat.yml +++ b/tests/acceptance/config/behat.yml @@ -17,9 +17,9 @@ default: - FileListContext - FilesAppContext - FilesAppSharingContext - - FilesSharingAppContext - LoginPageContext - NotificationContext + - PublicShareContext - SettingsContext - SettingsMenuContext - ThemingAppContext @@ -44,9 +44,9 @@ default: - FileListContext - FilesAppContext - FilesAppSharingContext - - FilesSharingAppContext - LoginPageContext - NotificationContext + - PublicShareContext - SettingsContext - SettingsMenuContext - ThemingAppContext diff --git a/tests/acceptance/features/bootstrap/FilesSharingAppContext.php b/tests/acceptance/features/bootstrap/PublicShareContext.php index 1fe12d5f42d..d475f1c6a17 100644 --- a/tests/acceptance/features/bootstrap/FilesSharingAppContext.php +++ b/tests/acceptance/features/bootstrap/PublicShareContext.php @@ -23,7 +23,7 @@ use Behat\Behat\Context\Context; -class FilesSharingAppContext implements Context, ActorAwareInterface { +class PublicShareContext implements Context, ActorAwareInterface { use ActorAware; use FileListAncestorSetter; |