From f29b134e8932b231e6e4cbc75b908bdba13da070 Mon Sep 17 00:00:00 2001 From: Alexey Kuzin Date: Sun, 27 Aug 2023 16:57:51 +0200 Subject: [PATCH] Move TarantoolAuthRequestTest --- .../protocol/{ => requests}/TarantoolAuthRequestTest.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) rename src/test/java/io/tarantool/driver/protocol/{ => requests}/TarantoolAuthRequestTest.java (92%) diff --git a/src/test/java/io/tarantool/driver/protocol/TarantoolAuthRequestTest.java b/src/test/java/io/tarantool/driver/protocol/requests/TarantoolAuthRequestTest.java similarity index 92% rename from src/test/java/io/tarantool/driver/protocol/TarantoolAuthRequestTest.java rename to src/test/java/io/tarantool/driver/protocol/requests/TarantoolAuthRequestTest.java index 6e601ad82..306d714ac 100644 --- a/src/test/java/io/tarantool/driver/protocol/TarantoolAuthRequestTest.java +++ b/src/test/java/io/tarantool/driver/protocol/requests/TarantoolAuthRequestTest.java @@ -1,8 +1,10 @@ -package io.tarantool.driver.protocol; +package io.tarantool.driver.protocol.requests; import io.tarantool.driver.auth.TarantoolAuthMechanism; import io.tarantool.driver.mappers.factories.DefaultMessagePackMapperFactory; -import io.tarantool.driver.protocol.requests.TarantoolAuthRequest; +import io.tarantool.driver.protocol.TarantoolHeader; +import io.tarantool.driver.protocol.TarantoolProtocolException; +import io.tarantool.driver.protocol.TarantoolRequestType; import org.junit.jupiter.api.Test; import org.msgpack.core.MessageBufferPacker; import org.msgpack.core.MessagePack;