diff --git a/test/tickets/LDEV2410.cfc b/test/tickets/LDEV2410.cfc index 6147e3cac0..158e1d2b0a 100644 --- a/test/tickets/LDEV2410.cfc +++ b/test/tickets/LDEV2410.cfc @@ -32,6 +32,8 @@ component extends="org.lucee.cfml.test.LuceeTestCase"{ var info = getFileInfo( testfile ); var mode = FileInfo( testfile ).mode; + systemOutput("initial mode was #mode#", true); + systemOutput(FileInfo( testfile ), true); expect( info.canWrite ).toBe( true ); FileWrite( testfile, "I am in normal (writable) file" ); @@ -42,8 +44,10 @@ component extends="org.lucee.cfml.test.LuceeTestCase"{ FileWrite( testfile, "I am in readonly file" ); }).toThrow(); + systemOutput("setting mode to #mode#", true); FileSetAccessMode( testfile, mode ); info = getFileInfo( testfile ); + systemOutput(FileInfo( testfile ), true); expect( info.canWrite ).toBe( true ); expect (function(){ FileWrite( testfile, "I am in normal (writable) file" );