From 50983c951d136bab375e4dfe1c60852ee67586c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Ar=C3=A8s?= Date: Mon, 8 Jul 2019 21:07:22 -0400 Subject: [PATCH] Move CompressArchiveUtilTest to proper package Move the test class to match the package of CompressArchiveUtil --- .../dockerjava/core/{ => util}/CompressArchiveUtilTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename src/test/java/com/github/dockerjava/core/{ => util}/CompressArchiveUtilTest.java (97%) diff --git a/src/test/java/com/github/dockerjava/core/CompressArchiveUtilTest.java b/src/test/java/com/github/dockerjava/core/util/CompressArchiveUtilTest.java similarity index 97% rename from src/test/java/com/github/dockerjava/core/CompressArchiveUtilTest.java rename to src/test/java/com/github/dockerjava/core/util/CompressArchiveUtilTest.java index e22419444..896fd9415 100644 --- a/src/test/java/com/github/dockerjava/core/CompressArchiveUtilTest.java +++ b/src/test/java/com/github/dockerjava/core/util/CompressArchiveUtilTest.java @@ -1,6 +1,5 @@ -package com.github.dockerjava.core; +package com.github.dockerjava.core.util; -import com.github.dockerjava.core.util.CompressArchiveUtil; import org.apache.commons.compress.archivers.tar.TarArchiveEntry; import org.apache.commons.compress.archivers.tar.TarArchiveInputStream; import org.apache.commons.io.IOUtils;