Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Nov 7, 2024
1 parent 599c43c commit a681a2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functions/ExpandPath.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit a681a2e

Please sign in to comment.