Skip to content

Commit

Permalink
fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Nov 7, 2024
1 parent 5c2ef50 commit 716e098
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion loader/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project default="core" basedir="." name="Lucee"
xmlns:resolver="antlib:org.apache.maven.resolver.ant">

<property name="version" value="6.2.0.154-SNAPSHOT"/>
<property name="version" value="6.2.0.155-SNAPSHOT"/>

<taskdef uri="antlib:org.apache.maven.resolver.ant" resource="org/apache/maven/resolver/ant/antlib.xml">
<classpath>
Expand Down
2 changes: 1 addition & 1 deletion loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.lucee</groupId>
<artifactId>lucee</artifactId>
<version>6.2.0.154-SNAPSHOT</version>
<version>6.2.0.155-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Lucee Loader Build</name>
Expand Down
4 changes: 2 additions & 2 deletions test/tickets/LDEV4955.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" {
}

private function _expand ( str ){
var webFactory = createObject("java", "lucee.runtime.config.ConfigWebFactory");
return webFactory.replaceConfigPlaceHolder(str );
var webFactory = createObject("java", "lucee.runtime.config.ConfigWebUtil");
return webFactory.replaceConfigPlaceHolders(str );
}
}

0 comments on commit 716e098

Please sign in to comment.