Skip to content

Commit

Permalink
[phalcon#13208] - More test corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Jun 21, 2019
1 parent 51ff213 commit d7bab7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/integration/Mvc/Model/Refactor-ModelsValidatorsCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ protected function testValidatorsRenamed(IntegrationTester $I)
$messages = $abonne->getMessages();

$I->assertEquals(
'PresenceOf',
PresenceOf::class,
$messages[0]->getType()
);

Expand All @@ -327,7 +327,7 @@ protected function testValidatorsRenamed(IntegrationTester $I)


$I->assertEquals(
'Email',
Email::class,
$messages[1]->getType()
);

Expand All @@ -348,7 +348,7 @@ protected function testValidatorsRenamed(IntegrationTester $I)
$I->assertCount(1, $messages);

$I->assertEquals(
'PresenceOf',
PresenceOf::class,
$messages[0]->getType()
);

Expand All @@ -369,7 +369,7 @@ protected function testValidatorsRenamed(IntegrationTester $I)
$I->assertCount(1, $messages);

$I->assertEquals(
'Email',
Email::class,
$messages[0]->getType()
);

Expand Down

0 comments on commit d7bab7e

Please sign in to comment.