fixing test

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2024-09-17 09:28:45 +02:00
parent 363cfb1669
commit 2dc3768887

View File

@@ -4,11 +4,9 @@ import lombok.val;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.client.RestClientTest;
import org.springframework.http.MediaType;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.client.MockRestServiceServer;
import static org.assertj.core.api.Assertions.assertThat;
@@ -16,7 +14,6 @@ import static org.springframework.test.web.client.match.MockRestRequestMatchers.
import static org.springframework.test.web.client.response.MockRestResponseCreators.withSuccess;
@DisplayName("Testing Timezone Service Default Implementation")
@RunWith(SpringRunner.class)
@RestClientTest(TimeZoneServiceImpl.class)
class TimeZoneServiceImplTest {