Fix compile errors

This commit is contained in:
spencergibb
2024-08-06 16:01:29 -04:00
parent b880e0009e
commit b668784ec1
2 changed files with 0 additions and 2 deletions

View File

@@ -721,7 +721,6 @@ public class ConfigServerConfigDataLoaderTests {
headers.setContentType(MediaType.APPLICATION_JSON);
when(response.getHeaders()).thenReturn(headers);
when(response.getStatusCode()).thenReturn(status);
when(response.getRawStatusCode()).thenReturn(status.value());
when(response.getBody()).thenReturn(new ByteArrayInputStream("{}".getBytes()));
}

View File

@@ -582,7 +582,6 @@ public class ConfigServicePropertySourceLocatorTests {
headers.setContentType(MediaType.APPLICATION_JSON);
Mockito.when(response.getHeaders()).thenReturn(headers);
Mockito.when(response.getStatusCode()).thenReturn(status);
Mockito.when(response.getRawStatusCode()).thenReturn(status.value());
Mockito.when(response.getBody()).thenReturn(new ByteArrayInputStream("{}".getBytes()));
}