diff --git a/test/functions/ExpandPath.cfc b/test/functions/ExpandPath.cfc index 98ebcbf978..3947056f0c 100644 --- a/test/functions/ExpandPath.cfc +++ b/test/functions/ExpandPath.cfc @@ -75,12 +75,12 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="mappings" { expandPath( '/'); } - public void function testForDirectoryWinStylePlaceholder(){ + public void function testForDirectoryWinStyleWithPlaceholder(){ var trgWin=expandPath("{temp-directory}/#createUniqueID()#\"); expect(right(trgWin,1)).toBe(sep, trgWin); } - public void function testForDirectoryUnixStylePlaceholder(){ + public void function testForDirectoryUnixStyleWithPlaceholder(){ var trgUnix=expandPath("{temp-directory}/#createUniqueID()#/"); expect(right(trgUnix,1)).toBe(sep, trgUnix); }