#47, Typo fix address tests

This commit is contained in:
Edo Freriks 2016-02-01 00:39:43 +01:00
parent 53bda17205
commit df2a935b32
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ $contactPage->submit([
if (method_exists($I, 'wait')) { if (method_exists($I, 'wait')) {
$I->wait(3); // only for selenium $I->wait(3); // only for selenium
} }
$I->expectTo('see that email adress is wrong'); $I->expectTo('see that email address is wrong');
$I->dontSee('Name cannot be blank', '.help-inline'); $I->dontSee('Name cannot be blank', '.help-inline');
$I->see('Email is not a valid email address.'); $I->see('Email is not a valid email address.');
$I->dontSee('Subject cannot be blank', '.help-inline'); $I->dontSee('Subject cannot be blank', '.help-inline');

View File

@ -29,7 +29,7 @@ $contactPage->submit([
'body' => 'test content', 'body' => 'test content',
'verifyCode' => 'testme', 'verifyCode' => 'testme',
]); ]);
$I->expectTo('see that email adress is wrong'); $I->expectTo('see that email address is wrong');
$I->dontSee('Name cannot be blank', '.help-inline'); $I->dontSee('Name cannot be blank', '.help-inline');
$I->see('Email is not a valid email address.'); $I->see('Email is not a valid email address.');
$I->dontSee('Subject cannot be blank', '.help-inline'); $I->dontSee('Subject cannot be blank', '.help-inline');