diff --git a/tests/testExtensionDownload.cfc b/tests/testExtensionDownload.cfc index 5de2006..4829709 100644 --- a/tests/testExtensionDownload.cfc +++ b/tests/testExtensionDownload.cfc @@ -19,14 +19,16 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="data-provider-inte function run( testResults , testBox ) { describe( "extensions need to be served directly for older lucee versions", function() { it(title="check local extension cache works", body=function(){ - var extentionCache = new services.extensionCache(); + var extensionCache = new services.extensionCache(); var path =extensionCache.getExtensionLex( "https://ext.lucee.org/compress-extension-1.0.0.15.lex" ); + systemOutput( path, true ) expect( fileExists( path ) ).toBeTrue(); }); it(title="check local extension cache works (from cache)", body=function(){ var extentionCache = new services.extensionCache(); var path = extensionCache.getExtensionLex( "https://ext.lucee.org/compress-extension-1.0.0.15.lex" ); + systemOutput( path, true ) expect( fileExists( path ) ).toBeTrue(); });