You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ya...@apache.org on 2018/11/18 13:01:13 UTC

[struts] branch struts-2-5-x updated: delete not-supported picked from master system property test

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

yasserzamani pushed a commit to branch struts-2-5-x
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/struts-2-5-x by this push:
     new 06e5dfc  delete not-supported picked from master system property test
06e5dfc is described below

commit 06e5dfc2ab550987abb79e4eb76c8c77151a1e78
Author: Yasser Zamani <ya...@apache.org>
AuthorDate: Sun Nov 18 16:30:54 2018 +0330

    delete not-supported picked from master system property test
---
 .../xwork2/config/providers/EnvsValueSubstitutorTest.java            | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/core/src/test/java/com/opensymphony/xwork2/config/providers/EnvsValueSubstitutorTest.java b/core/src/test/java/com/opensymphony/xwork2/config/providers/EnvsValueSubstitutorTest.java
index a360c63..0115ce2 100644
--- a/core/src/test/java/com/opensymphony/xwork2/config/providers/EnvsValueSubstitutorTest.java
+++ b/core/src/test/java/com/opensymphony/xwork2/config/providers/EnvsValueSubstitutorTest.java
@@ -55,11 +55,6 @@ public class EnvsValueSubstitutorTest extends StrutsInternalTestCase {
         assertThat(substitutor.substitute("${" + key + "}"), is(value));
     }
 
-    public void testSystemSimpleDefaultValue() {
-        final String defaultValue = "defaultValue";
-        assertThat(substitutor.substitute("${UNKNOWN:" + defaultValue + "}"), is(defaultValue));
-    }
-
     public void testNoSubstitution() {
         final String value = "val1";
         assertThat(substitutor.substitute(value), is(value));