Skip to content

Commit

Permalink
#15598 - Adjust test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed May 30, 2022
1 parent 6013f32 commit 1ff4fc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/database/Mvc/Model/FindCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ public function mvcModelFindPrivatePropertyWithRedisCache(DatabaseTester $I)
]
);

$I->assertSame(1, $original->count());
$I->assertCount(1, $original);

$record = $original[0];
$actual = $record->getIsActive();
Expand Down Expand Up @@ -345,7 +345,7 @@ public function mvcModelFindPrivatePropertyWithRedisCache(DatabaseTester $I)
]
);

$I->assertSame(0, $original->count());
$I->assertCount(0, $original);

/**
* Finally get it back from the cache
Expand All @@ -364,7 +364,7 @@ public function mvcModelFindPrivatePropertyWithRedisCache(DatabaseTester $I)
]
);

$I->assertSame(1, $cached->count());
$I->assertCount(1, $cached);

$record = $cached[0];
$actual = $record->getIsActive();
Expand Down

0 comments on commit 1ff4fc0

Please sign in to comment.