From d434d026d397e3c49792e1cd1275df2cae5c5a0f Mon Sep 17 00:00:00 2001 From: Damien Guard Date: Wed, 30 Nov 2016 18:42:23 -0800 Subject: [PATCH] Correct compile cache afterEach cleanup --- spec/compile-cache-spec.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/compile-cache-spec.coffee b/spec/compile-cache-spec.coffee index 13d2d6634..a1ffc3a73 100644 --- a/spec/compile-cache-spec.coffee +++ b/spec/compile-cache-spec.coffee @@ -21,8 +21,8 @@ describe 'CompileCache', -> spyOn(TypeScriptSimple::, 'compile').andReturn 'the-typescript-code' afterEach -> - CSON.setCacheDir(CompileCache.getCacheDirectory()) CompileCache.setAtomHomeDirectory(process.env.ATOM_HOME) + CSON.setCacheDir(CompileCache.getCacheDirectory()) temp.cleanupSync() describe 'addPathToCache(filePath, atomHome)', ->