From 58948ccedbdc517ce5a012e8c972970eead37476 Mon Sep 17 00:00:00 2001 From: John DeRegnaucourt Date: Sun, 23 Jun 2024 15:28:29 -0400 Subject: [PATCH] repackaged the LRUTest class --- .../java/com/cedarsoftware/util/{cache => }/LRUCacheTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename src/test/java/com/cedarsoftware/util/{cache => }/LRUCacheTest.java (99%) diff --git a/src/test/java/com/cedarsoftware/util/cache/LRUCacheTest.java b/src/test/java/com/cedarsoftware/util/LRUCacheTest.java similarity index 99% rename from src/test/java/com/cedarsoftware/util/cache/LRUCacheTest.java rename to src/test/java/com/cedarsoftware/util/LRUCacheTest.java index 86bdf0a6..ed681b11 100644 --- a/src/test/java/com/cedarsoftware/util/cache/LRUCacheTest.java +++ b/src/test/java/com/cedarsoftware/util/LRUCacheTest.java @@ -1,4 +1,4 @@ -package com.cedarsoftware.util.cache; +package com.cedarsoftware.util; import java.security.SecureRandom; import java.util.Arrays; @@ -11,7 +11,6 @@ import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; -import com.cedarsoftware.util.LRUCache; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource;