From 06e5dfc2ab550987abb79e4eb76c8c77151a1e78 Mon Sep 17 00:00:00 2001 From: Yasser Zamani Date: Sun, 18 Nov 2018 16:30:54 +0330 Subject: [PATCH] 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 a360c63ea..0115ce26d 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));