Skip to content

Commit

Permalink
qa: modify unit tests to fit in 2.11.x
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Bösing <[email protected]>
  • Loading branch information
boesing committed May 3, 2021
1 parent 13fa4eb commit 8ff716e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Psr/CacheItemPool/CacheItemPoolDecoratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ private function getAdapter(?ObjectProphecy $storage = null): CacheItemPoolDecor

public function testCanHandleRemoveItemsReturningNonArray()
{
$adapter = $this->getStorageProphesy();
$adapter = $this->getStorageProphecy();
$adapter
->removeItems(Argument::type('array'))
->willReturn(null);
Expand All @@ -552,7 +552,7 @@ public function testCanHandleRemoveItemsReturningNonArray()
*/
public function testWillVerifyKeyExistenceByUsingHasItemsWhenDeletionWasNotSuccessful($exists, $sucsessful)
{
$adapter = $this->getStorageProphesy();
$adapter = $this->getStorageProphecy();
$adapter
->removeItems(Argument::type('array'))
->willReturn(['foo']);
Expand Down

0 comments on commit 8ff716e

Please sign in to comment.