From df2a935b329df2596f325736e321a5cd518c1935 Mon Sep 17 00:00:00 2001 From: Edo Freriks Date: Mon, 1 Feb 2016 00:39:43 +0100 Subject: [PATCH] #47, Typo fix address tests --- tests/codeception/acceptance/ContactCept.php | 2 +- tests/codeception/functional/ContactCept.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/codeception/acceptance/ContactCept.php b/tests/codeception/acceptance/ContactCept.php index b51d1c0..f848443 100644 --- a/tests/codeception/acceptance/ContactCept.php +++ b/tests/codeception/acceptance/ContactCept.php @@ -35,7 +35,7 @@ $contactPage->submit([ if (method_exists($I, 'wait')) { $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->see('Email is not a valid email address.'); $I->dontSee('Subject cannot be blank', '.help-inline'); diff --git a/tests/codeception/functional/ContactCept.php b/tests/codeception/functional/ContactCept.php index 074820a..b17a757 100644 --- a/tests/codeception/functional/ContactCept.php +++ b/tests/codeception/functional/ContactCept.php @@ -29,7 +29,7 @@ $contactPage->submit([ 'body' => 'test content', '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->see('Email is not a valid email address.'); $I->dontSee('Subject cannot be blank', '.help-inline');