From 649e1cfaa763e7dc5a79754e4df946d387d4d64a Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Sat, 4 Jun 2016 06:13:25 +1000 Subject: [PATCH] Fixes test --- tests/unit/system/classes/CombineAssetsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/system/classes/CombineAssetsTest.php b/tests/unit/system/classes/CombineAssetsTest.php index 700c2f68a..7f52c0c1c 100644 --- a/tests/unit/system/classes/CombineAssetsTest.php +++ b/tests/unit/system/classes/CombineAssetsTest.php @@ -121,7 +121,7 @@ class CombineAssetsTest extends TestCase $combiner = CombineAssets::instance(); self::setProtectedProperty($combiner, 'localPath', $samplePath); - $value = self::callProtectedMethod($combiner, 'makeCacheId', [$sampleResources]); + $value = self::callProtectedMethod($combiner, 'getCacheKey', [$sampleResources]); $this->assertEquals(md5($samplePath.implode('|', $sampleResources)), $value); }