You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2019/12/03 16:37:39 UTC

[isis] branch master updated: ISIS-2200: fixes unit tests

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

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new a422d8f  ISIS-2200: fixes unit tests
a422d8f is described below

commit a422d8ff47a224d4132dfb74f73987551f448a42
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Tue Dec 3 16:33:39 2019 +0000

    ISIS-2200: fixes unit tests
---
 .../isis/metamodel/services/swagger/internal/TaggerTest.java | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/core/metamodel/src/test/java/org/apache/isis/metamodel/services/swagger/internal/TaggerTest.java b/core/metamodel/src/test/java/org/apache/isis/metamodel/services/swagger/internal/TaggerTest.java
index 0e719ac..2cd2a62 100644
--- a/core/metamodel/src/test/java/org/apache/isis/metamodel/services/swagger/internal/TaggerTest.java
+++ b/core/metamodel/src/test/java/org/apache/isis/metamodel/services/swagger/internal/TaggerTest.java
@@ -53,18 +53,6 @@ public class TaggerTest {
         }
 
         @Test
-        public void isisAddons() throws Exception {
-            String tag = new TaggerDefault().tagForObjectType("org.isisaddons.module.security.app.feature.ApplicationClass", null);
-            assertThat(tag, is(equalTo("isisaddons.org security")));
-        }
-
-        @Test
-        public void incodeCatalog() throws Exception {
-            String tag = new TaggerDefault().tagForObjectType("org.incode.module.communications.foo.bar.FooBar", null);
-            assertThat(tag, is(equalTo("catalog.incode.org communications")));
-        }
-
-        @Test
         public void internals() throws Exception {
             String tag = new TaggerDefault().tagForObjectType("org.apache.isis.applib.fixturescripts.FixtureResult", null);
             assertThat(tag, is(equalTo("> apache isis internals")));