diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-10 18:55:01 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-11 08:40:38 +0100 |
commit | 72fb176ec999426048a7119862f4bf1ef8d2c34f (patch) | |
tree | 23849ee4262d56a8b9bc1246258eeefb10a08a78 /tests | |
parent | 5afaf3d06ccea7684a7be459f40d3d3ce0369e73 (diff) | |
download | nextcloud-server-72fb176ec999426048a7119862f4bf1ef8d2c34f.tar.gz nextcloud-server-72fb176ec999426048a7119862f4bf1ef8d2c34f.zip |
Change label also in the acceptance tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/acceptance/features/bootstrap/SettingsContext.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/acceptance/features/bootstrap/SettingsContext.php b/tests/acceptance/features/bootstrap/SettingsContext.php index 2a3aeff2f2e..6b60b2c3176 100644 --- a/tests/acceptance/features/bootstrap/SettingsContext.php +++ b/tests/acceptance/features/bootstrap/SettingsContext.php @@ -71,16 +71,16 @@ class SettingsContext implements Context, ActorAwareInterface { // forThe()->checkbox("Restrict username...") can not be used here; that // would return the checkbox itself, but the element that the user // interacts with is the label. - return Locator::forThe()->xpath("//label[normalize-space() = 'Restrict username autocompletion to users within the same groups']")-> - describedAs("Restrict username autocompletion to groups checkbox in Sharing section in Administration Sharing Settings"); + return Locator::forThe()->xpath("//label[normalize-space() = 'Allow username autocompletion to users within the same groups']")-> + describedAs("Allow username autocompletion to users within the same groups checkbox in Sharing section in Administration Sharing Settings"); } /** * @return Locator */ public static function restrictUsernameAutocompletionToGroupsCheckboxInput() { - return Locator::forThe()->checkbox("Restrict username autocompletion to users within the same groups")-> - describedAs("Restrict username autocompletion to groups checkbox input in Sharing section in Administration Sharing Settings"); + return Locator::forThe()->checkbox("Allow username autocompletion to users within the same groups")-> + describedAs("Allow username autocompletion to users within the same groups checkbox input in Sharing section in Administration Sharing Settings"); } /** |