Skip to content

Commit

Permalink
Fix tests after change in e582b4f
Browse files Browse the repository at this point in the history
  • Loading branch information
andrerom committed Dec 17, 2019
1 parent e582b4f commit cffdc24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bundle/Tests/Cache/PersistenceCachePurgerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,8 @@ public function testClearVersionOfOneContent($contentId, $versionNo)
{
$this->cacheService
->expects($this->once())
->method('deleteItem')
->with("ez-content-version-info-${contentId}-${versionNo}");
->method('deleteItems')
->with(["ez-content-version-info-${contentId}-${versionNo}", "ez-content-${contentId}-version-list"]);

$this->cacheService
->expects($this->once())
Expand Down

0 comments on commit cffdc24

Please sign in to comment.