delete not-supported picked from master system property test

This commit is contained in:
Yasser Zamani
2018-11-18 16:30:54 +03:30
parent fe630db5f2
commit 06e5dfc2ab
@@ -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));