From aa1e560e3f05714b7146768230f75555442c958a Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Sat, 7 Sep 2024 10:50:35 +0200 Subject: [PATCH] LDEV-5085 fix file separator --- test/tickets/LDEV5085.cfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tickets/LDEV5085.cfc b/test/tickets/LDEV5085.cfc index fa37fdcf0a..c0d2e49c69 100644 --- a/test/tickets/LDEV5085.cfc +++ b/test/tickets/LDEV5085.cfc @@ -5,7 +5,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" { it( title='test preside anti samy service (full path)', body=function() { var path = getDirectoryFromPath( getCurrentTemplatePath() ); - var antisamy = new LDEV5085.AntiSamyService( path & "LDEV5085\antisamylib" ); + var antisamy = new LDEV5085.AntiSamyService( path & "LDEV5085#server.separator.file#antisamylib" ); var str = "
xss
"; var result = antisamy.clean( str ); expect( result ).toBe( "
xss
" );