You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/09/13 08:01:51 UTC

[isis] branch master updated: ISIS-3209: migrate core-config

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

ahuber 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 8636ca83b3 ISIS-3209: migrate core-config
8636ca83b3 is described below

commit 8636ca83b35211981679e80216ae8dc6320bb0e0
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Sep 13 10:01:45 2022 +0200

    ISIS-3209: migrate core-config
---
 core/config/pom.xml                                                 | 5 +++--
 .../apache/isis/core/config/util/ConfigUtil_isProtected_Test.java   | 6 +++---
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/core/config/pom.xml b/core/config/pom.xml
index dc7a58f600..3716b614ab 100644
--- a/core/config/pom.xml
+++ b/core/config/pom.xml
@@ -96,10 +96,11 @@
 			<optional>true</optional>
 		</dependency>
         
-        <!-- TESTS -->
+        <!-- TESTING -->
+        
         <dependency>
             <groupId>org.apache.isis.core</groupId>
-            <artifactId>isis-core-internaltestvintage</artifactId>
+            <artifactId>isis-core-internaltestsupport</artifactId>
             <scope>test</scope>
         </dependency>
 
diff --git a/core/config/src/test/java/org/apache/isis/core/config/util/ConfigUtil_isProtected_Test.java b/core/config/src/test/java/org/apache/isis/core/config/util/ConfigUtil_isProtected_Test.java
index 51147b697c..59d7896606 100644
--- a/core/config/src/test/java/org/apache/isis/core/config/util/ConfigUtil_isProtected_Test.java
+++ b/core/config/src/test/java/org/apache/isis/core/config/util/ConfigUtil_isProtected_Test.java
@@ -20,9 +20,9 @@ package org.apache.isis.core.config.util;
 
 import org.junit.jupiter.api.Test;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertTrue;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertTrue;
 
 class ConfigUtil_isProtected_Test {