You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2016/11/30 10:20:22 UTC

[2/2] struts git commit: WW-4698 Uses lowercase prefix

WW-4698 Uses lowercase prefix


Project: http://git-wip-us.apache.org/repos/asf/struts/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/a1b89842
Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/a1b89842
Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/a1b89842

Branch: refs/heads/master
Commit: a1b89842c014b771702cb1e0765f8887aeca82e5
Parents: 0376698
Author: Lukasz Lenart <lu...@apache.org>
Authored: Wed Nov 30 11:17:26 2016 +0100
Committer: Lukasz Lenart <lu...@apache.org>
Committed: Wed Nov 30 11:17:26 2016 +0100

----------------------------------------------------------------------
 .../xwork2/config/providers/xwork-test-envs-substitution.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts/blob/a1b89842/core/src/test/resources/com/opensymphony/xwork2/config/providers/xwork-test-envs-substitution.xml
----------------------------------------------------------------------
diff --git a/core/src/test/resources/com/opensymphony/xwork2/config/providers/xwork-test-envs-substitution.xml b/core/src/test/resources/com/opensymphony/xwork2/config/providers/xwork-test-envs-substitution.xml
index 13f2bfb..52b777f 100644
--- a/core/src/test/resources/com/opensymphony/xwork2/config/providers/xwork-test-envs-substitution.xml
+++ b/core/src/test/resources/com/opensymphony/xwork2/config/providers/xwork-test-envs-substitution.xml
@@ -7,11 +7,11 @@
 
     <constant name="foo" value="bar"/>
 
-    <constant name="user" value="${ENV.USER}"/>
-    <constant name="home" value="Current HOME = ${ENV.HOME}"/>
+    <constant name="user" value="${env.USER}"/>
+    <constant name="home" value="Current HOME = ${env.HOME}"/>
     <constant name="os" value="Current OS = ${os.name}"/>
-    <constant name="unknown" value="Unknown = ${ENV.UNKNOWN:default}"/>
+    <constant name="unknown" value="Unknown = ${env.UNKNOWN:default}"/>
 
-    <constant name="struts.devMode" value="${ENV.STRUTS_DEV_MODE:false}"/>
+    <constant name="struts.devMode" value="${env.STRUTS_DEV_MODE:false}"/>
 
 </xwork>