Skip to content
Snippets Groups Projects
Commit 4ee03d46 authored by Demian Katz's avatar Demian Katz
Browse files

Style fix.

parent 259dcd7b
Branches
Tags
No related merge requests found
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
* @link https://vufind.org Main Page * @link https://vufind.org Main Page
*/ */
namespace VuFindTest\Mink; namespace VuFindTest\Mink;
use Behat\Mink\Element\Element;
/** /**
* Mink account actions test class. * Mink account actions test class.
...@@ -102,7 +101,7 @@ class AccountActionsTest extends \VuFindTest\Unit\MinkTestCase ...@@ -102,7 +101,7 @@ class AccountActionsTest extends \VuFindTest\Unit\MinkTestCase
$this->findCss($page, '#newpassword .btn.btn-primary')->click(); $this->findCss($page, '#newpassword .btn.btn-primary')->click();
$this->snooze(); $this->snooze();
$this->assertEquals( $this->assertEquals(
'Invalid login -- please try again.', 'Invalid login -- please try again.',
$this->findCss($page, '.alert-danger')->getText() $this->findCss($page, '.alert-danger')->getText()
); );
...@@ -111,7 +110,7 @@ class AccountActionsTest extends \VuFindTest\Unit\MinkTestCase ...@@ -111,7 +110,7 @@ class AccountActionsTest extends \VuFindTest\Unit\MinkTestCase
$this->findCss($page, '#newpassword .btn.btn-primary')->click(); $this->findCss($page, '#newpassword .btn.btn-primary')->click();
$this->snooze(); $this->snooze();
$this->assertEquals( $this->assertEquals(
'Your password has successfully been changed', 'Your password has successfully been changed',
$this->findCss($page, '.alert-success')->getText() $this->findCss($page, '.alert-success')->getText()
); );
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment