소스 검색

#47, Typo fix address tests

Edo Freriks 10 년 전
부모
커밋
df2a935b32
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      tests/codeception/acceptance/ContactCept.php
  2. 1 1
      tests/codeception/functional/ContactCept.php

+ 1 - 1
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');

+ 1 - 1
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');