MDL-39348 behat: Removing redundant step

This is causing some browsers to fail tests
as they uses the DOM of the current page to
search "You are logged in as".
This commit is contained in:
David Monllao
2013-05-03 10:16:44 +08:00
parent 95190fda69
commit e73062c135
+2 -2
View File
@@ -52,8 +52,8 @@ class behat_auth extends behat_base {
new Given('I follow "Login"'),
new Given('I fill in "Username" with "'.$username.'"'),
new Given('I fill in "Password" with "'.$username.'"'),
new When('I press "Login"'),
new Given('I should see "You are logged in as"'));
new Given('I press "Login"')
);
}
/**