[java-opensaml] branch main updated: Missed a test API in a split package.

Scott Cantor cantor.2 at osu.edu
Fri Sep 18 12:58:34 UTC 2020


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-opensaml.

View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=fa903a0946c982eb7e0dcfe6f8ebe261ce1ca232

The following commit(s) were added to refs/heads/main by this push:
       new  fa903a094 Missed a test API in a split package.
fa903a094 is described below

commit fa903a0946c982eb7e0dcfe6f8ebe261ce1ca232
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Sep 18 08:53:54 2020 -0400

    Missed a test API in a split package.
---
 .../java/org/opensaml/storage/{ => testing}/StorageServiceTest.java     | 2 +-
 .../src/test/java/org/opensaml/storage/impl/JPAStorageServiceTest.java  | 2 +-
 .../test/java/org/opensaml/storage/impl/MemoryStorageServiceTest.java   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opensaml-storage-api/src/test/java/org/opensaml/storage/StorageServiceTest.java b/opensaml-storage-api/src/test/java/org/opensaml/storage/testing/StorageServiceTest.java
similarity index 99%
rename from opensaml-storage-api/src/test/java/org/opensaml/storage/StorageServiceTest.java
rename to opensaml-storage-api/src/test/java/org/opensaml/storage/testing/StorageServiceTest.java
index 44a8cb59c..6a092955f 100644
--- a/opensaml-storage-api/src/test/java/org/opensaml/storage/StorageServiceTest.java
+++ b/opensaml-storage-api/src/test/java/org/opensaml/storage/testing/StorageServiceTest.java
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.opensaml.storage;
+package org.opensaml.storage.testing;
 
 import java.io.IOException;
 import java.security.SecureRandom;
diff --git a/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/JPAStorageServiceTest.java b/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/JPAStorageServiceTest.java
index 1b182c699..04bc89d1b 100644
--- a/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/JPAStorageServiceTest.java
+++ b/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/JPAStorageServiceTest.java
@@ -31,7 +31,7 @@ import net.shibboleth.utilities.java.support.component.ComponentInitializationEx
 
 import org.opensaml.storage.StorageRecord;
 import org.opensaml.storage.StorageService;
-import org.opensaml.storage.StorageServiceTest;
+import org.opensaml.storage.testing.StorageServiceTest;
 import org.springframework.beans.factory.FactoryBean;
 import org.springframework.context.support.GenericApplicationContext;
 import org.springframework.core.io.ClassPathResource;
diff --git a/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/MemoryStorageServiceTest.java b/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/MemoryStorageServiceTest.java
index a5c316d2c..370a4468c 100644
--- a/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/MemoryStorageServiceTest.java
+++ b/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/MemoryStorageServiceTest.java
@@ -24,8 +24,8 @@ import javax.annotation.Nonnull;
 import net.shibboleth.utilities.java.support.component.ComponentInitializationException;
 
 import org.opensaml.storage.StorageService;
-import org.opensaml.storage.StorageServiceTest;
 import org.opensaml.storage.impl.MemoryStorageService;
+import org.opensaml.storage.testing.StorageServiceTest;
 import org.testng.annotations.Test;
 
 /**

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list