From a681a2e243d19537f9579c792292f7bcc8f2fd73 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Thu, 7 Nov 2024 13:04:36 +0100 Subject: [PATCH] cleanup --- test/functions/ExpandPath.cfc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }