You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2020/04/12 13:08:41 UTC

[maven-ejb-plugin] branch master updated: Fix test names

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

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-ejb-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 42286f7  Fix test names
42286f7 is described below

commit 42286f71e36b038a6fd594e19d5a159e09c5ab95
Author: Piotrek Żygieło <pz...@users.noreply.github.com>
AuthorDate: Sun Apr 12 14:54:58 2020 +0200

    Fix test names
---
 .../java/org/apache/maven/plugins/ejb/IncludesExcludesTest.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/test/java/org/apache/maven/plugins/ejb/IncludesExcludesTest.java b/src/test/java/org/apache/maven/plugins/ejb/IncludesExcludesTest.java
index 778a384..34adb29 100644
--- a/src/test/java/org/apache/maven/plugins/ejb/IncludesExcludesTest.java
+++ b/src/test/java/org/apache/maven/plugins/ejb/IncludesExcludesTest.java
@@ -41,7 +41,7 @@ public class IncludesExcludesTest
     }
 
     @Test
-    public void nullForInclucesShouldResultInZeroSizeResults()
+    public void nullForIncludesShouldResultInZeroSizeResults()
     {
         IncludesExcludes ie = new IncludesExcludes( null, Collections.<String>emptyList(),
                                                     Collections.<String>emptyList(), Collections.<String>emptyList() );
@@ -51,7 +51,7 @@ public class IncludesExcludesTest
     }
 
     @Test
-    public void nullForExclucesShouldResultInZeroSizeResults()
+    public void nullForExcludesShouldResultInZeroSizeResults()
     {
         IncludesExcludes ie = new IncludesExcludes( Collections.<String>emptyList(), null,
                                                     Collections.<String>emptyList(), Collections.<String>emptyList() );
@@ -71,7 +71,7 @@ public class IncludesExcludesTest
     }
 
     @Test
-    public void nonNullForDefaultIncludesShouldResultInExcludesWithDefaultIncludes()
+    public void nonNullForDefaultIncludesShouldResultInIncludesWithDefaultIncludes()
     {
         IncludesExcludes ie = new IncludesExcludes( null, null, Lists.newArrayList( "**/package.html" ),
                                                     Collections.<String>emptyList() );