Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zsilbi committed Oct 14, 2019
1 parent 2d1f547 commit 3b68872
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/Mvc/Model/UnderscoreCallStaticCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ function () {
*/
$I->expectThrowable(
new Exception(
"Cannot resolve attribute 'unknownField' in the model"
"Cannot resolve attribute 'UnknownField' in the model"
),
function () {
Models\Robots::findFirstByUnknownField(1);
Expand All @@ -176,7 +176,7 @@ function () {
*/
$I->expectThrowable(
new Exception(
"Cannot resolve attribute 'unknownField' in the model"
"Cannot resolve attribute 'UnknownField' in the model"
),
function () {
Models\Robots::countByUnknownField(1);
Expand Down

0 comments on commit 3b68872

Please sign in to comment.