aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/acceptance/features/bootstrap/ContactsMenuContext.php2
-rw-r--r--tests/acceptance/features/bootstrap/SearchContext.php2
-rw-r--r--tests/acceptance/features/bootstrap/ThemingAppContext.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/acceptance/features/bootstrap/ContactsMenuContext.php b/tests/acceptance/features/bootstrap/ContactsMenuContext.php
index 35786062150..ae4eab89ec7 100644
--- a/tests/acceptance/features/bootstrap/ContactsMenuContext.php
+++ b/tests/acceptance/features/bootstrap/ContactsMenuContext.php
@@ -82,7 +82,7 @@ class ContactsMenuContext implements Context, ActorAwareInterface {
* @When I search for the user :user
*/
public function iSearchForTheUser($user) {
- $this->actor->find(self::contactsMenuSearchInput(), 10)->setValue($user . "\r");
+ $this->actor->find(self::contactsMenuSearchInput(), 10)->setValue($user);
}
/**
diff --git a/tests/acceptance/features/bootstrap/SearchContext.php b/tests/acceptance/features/bootstrap/SearchContext.php
index ba0d9d9933d..db7aeb90ffe 100644
--- a/tests/acceptance/features/bootstrap/SearchContext.php
+++ b/tests/acceptance/features/bootstrap/SearchContext.php
@@ -86,7 +86,7 @@ class SearchContext implements Context, ActorAwareInterface {
* @When I search for :query
*/
public function iSearchFor($query) {
- $this->actor->find(self::searchBoxInput(), 10)->setValue($query . "\r");
+ $this->actor->find(self::searchBoxInput(), 10)->setValue($query);
}
/**
diff --git a/tests/acceptance/features/bootstrap/ThemingAppContext.php b/tests/acceptance/features/bootstrap/ThemingAppContext.php
index 70fb2b01e16..d17d9c18109 100644
--- a/tests/acceptance/features/bootstrap/ThemingAppContext.php
+++ b/tests/acceptance/features/bootstrap/ThemingAppContext.php
@@ -65,7 +65,7 @@ class ThemingAppContext implements Context, ActorAwareInterface {
* @When I set the :parameterName parameter in the Theming app to :parameterValue
*/
public function iSetTheParameterInTheThemingAppTo($parameterName, $parameterValue) {
- $this->actor->find(self::inputFieldFor($parameterName), 10)->setValue($parameterValue . "\r");
+ $this->actor->find(self::inputFieldFor($parameterName), 10)->setValue($parameterValue);
}
/**