mirror of
https://github.com/keycloak/keycloak.git
synced 2026-02-18 18:37:54 -05:00
fix: removing references to shaded testcontainer classes
closes: #45188 Signed-off-by: Steve Hawkins <shawkins@redhat.com>
This commit is contained in:
parent
27b1ab93f8
commit
aa5022aaf6
3 changed files with 7 additions and 7 deletions
|
|
@ -34,9 +34,9 @@ import org.keycloak.it.utils.RawKeycloakDistribution;
|
|||
|
||||
import io.quarkus.deployment.util.FileUtil;
|
||||
import io.quarkus.test.junit.main.Launch;
|
||||
import org.apache.commons.io.FileUtils;
|
||||
import org.junit.jupiter.api.Tag;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.testcontainers.shaded.org.apache.commons.io.FileUtils;
|
||||
|
||||
import static org.keycloak.quarkus.runtime.cli.command.Main.CONFIG_FILE_LONG_NAME;
|
||||
|
||||
|
|
|
|||
|
|
@ -25,14 +25,14 @@ import com.fasterxml.jackson.databind.JsonNode;
|
|||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import io.quarkus.test.junit.main.LaunchResult;
|
||||
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.hamcrest.Matchers.containsString;
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.hamcrest.Matchers.is;
|
||||
import static org.hamcrest.Matchers.not;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
import static org.junit.jupiter.api.Assertions.fail;
|
||||
import static org.testcontainers.shaded.org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.testcontainers.shaded.org.hamcrest.Matchers.containsString;
|
||||
import static org.testcontainers.shaded.org.hamcrest.Matchers.equalTo;
|
||||
import static org.testcontainers.shaded.org.hamcrest.Matchers.is;
|
||||
import static org.testcontainers.shaded.org.hamcrest.Matchers.not;
|
||||
|
||||
public interface CLIResult extends LaunchResult {
|
||||
|
||||
|
|
|
|||
|
|
@ -67,6 +67,7 @@ import org.keycloak.util.JsonSerialization;
|
|||
|
||||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
import org.apache.commons.io.IOUtils;
|
||||
import org.apache.commons.lang3.exception.ExceptionUtils;
|
||||
import org.apache.http.HttpStatus;
|
||||
import org.apache.http.NameValuePair;
|
||||
import org.apache.http.client.entity.UrlEncodedFormEntity;
|
||||
|
|
@ -76,7 +77,6 @@ import org.apache.http.client.methods.HttpPost;
|
|||
import org.apache.http.message.BasicNameValuePair;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.testcontainers.shaded.org.apache.commons.lang3.exception.ExceptionUtils;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertFalse;
|
||||
|
|
|
|||
Loading…
Reference in a new issue