File tree Expand file tree Collapse file tree
ee/backend/tests/src/test/kotlin/io/tolgee/ee/unit Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import io.tolgee.model.enums.LlmProviderType
1010import org.assertj.core.api.Assertions.assertThat
1111import org.junit.jupiter.api.BeforeEach
1212import org.junit.jupiter.api.Test
13+ import org.springframework.http.HttpHeaders
1314import org.springframework.http.HttpMethod
1415import org.springframework.http.HttpStatus
1516import org.springframework.http.MediaType
@@ -144,7 +145,7 @@ class AnthropicApiServiceTest {
144145 private val onBody : (String ) -> Unit ,
145146 ) : ClientHttpRequest {
146147 private val outputStream = ByteArrayOutputStream ()
147- private val headers = org.springframework.http. HttpHeaders ()
148+ private val headers = HttpHeaders ()
148149
149150 override fun getMethod () = httpMethod
150151
@@ -166,7 +167,7 @@ class AnthropicApiServiceTest {
166167 private val body : String ,
167168 ) : ClientHttpResponse {
168169 private val headers =
169- org.springframework.http. HttpHeaders ().apply {
170+ HttpHeaders ().apply {
170171 contentType = MediaType .APPLICATION_JSON
171172 }
172173
You can’t perform that action at this time.
0 commit comments