This is an automated email from the ASF dual-hosted git repository.

wpaetzold pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git

commit 23fc31f78158bd8bee84fc67c968dcf7224d3882
Author: Wiebke Pätzold <wiebke.paetz...@ecomify.de>
AuthorDate: Tue Jul 25 20:30:42 2023 +0200

    Fixed: Fixes a reference for GetLocaleList.groovy (OFBIZ-12813)
---
 .../src/test/java/org/apache/ofbiz/common/GetLocaleListTests.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/framework/common/src/test/java/org/apache/ofbiz/common/GetLocaleListTests.java
 
b/framework/common/src/test/java/org/apache/ofbiz/common/GetLocaleListTests.java
index 86ee64a780..383c4510d1 100644
--- 
a/framework/common/src/test/java/org/apache/ofbiz/common/GetLocaleListTests.java
+++ 
b/framework/common/src/test/java/org/apache/ofbiz/common/GetLocaleListTests.java
@@ -52,7 +52,7 @@ public class GetLocaleListTests {
     private List<Map<String, String>> runScript() throws Exception {
         Map<String, Object> gContext = new HashMap<>();
         gContext.put(ScriptUtil.PARAMETERS_KEY, params);
-        engine.run("framework/common/groovyScripts/GetLocaleList.groovy", 
GroovyUtil.getBinding(gContext));
+        
engine.run("framework/common/src/main/groovy/org/apache/ofbiz/common/GetLocaleList.groovy",
 GroovyUtil.getBinding(gContext));
         return (List<Map<String, String>>) gContext.get("locales");
     }
 

Reply via email to