From commits-return-18166-archive-asf-public=cust-asf.ponee.io@struts.apache.org Sun Nov 18 14:01:15 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 5BE2918066C for ; Sun, 18 Nov 2018 14:01:15 +0100 (CET) Received: (qmail 91912 invoked by uid 500); 18 Nov 2018 13:01:14 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 91903 invoked by uid 99); 18 Nov 2018 13:01:14 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Nov 2018 13:01:14 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id DFAB382C3A; Sun, 18 Nov 2018 13:01:13 +0000 (UTC) Date: Sun, 18 Nov 2018 13:01:13 +0000 To: "commits@struts.apache.org" Subject: [struts] branch struts-2-5-x updated: delete not-supported picked from master system property test MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154254607383.6744.9778620043750498084@gitbox.apache.org> From: yasserzamani@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: struts X-Git-Refname: refs/heads/struts-2-5-x X-Git-Reftype: branch X-Git-Oldrev: fe630db5f299ba4037be29e3ce12e933d7042b2f X-Git-Newrev: 06e5dfc2ab550987abb79e4eb76c8c77151a1e78 X-Git-Rev: 06e5dfc2ab550987abb79e4eb76c8c77151a1e78 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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));