Skip to content

Commit

Permalink
Fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverFire committed Apr 29, 2018
1 parent b9ffea1 commit 2468282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/framework/caching/FileCacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function testCacheRenewalOnDifferentOwnership()
$refClass = new \ReflectionClass($cache->handler);
$refMethodGetCacheFile = $refClass->getMethod('getCacheFile');
$refMethodGetCacheFile->setAccessible(true);
$cacheFile = $refMethodGetCacheFile->invoke($cache, $cacheInternalKey);
$cacheFile = $refMethodGetCacheFile->invoke($cache->handler, $cacheInternalKey);
$refMethodGetCacheFile->setAccessible(false);

$output = array();
Expand Down

0 comments on commit 2468282

Please sign in to comment.