Update dropwizard to 2.0.34

This commit is contained in:
Chris Eager 2023-01-12 18:00:22 -06:00 committed by Chris Eager
parent 74d9849472
commit b8967b75c6
2 changed files with 2 additions and 3 deletions

View File

@ -48,7 +48,7 @@
<commons-codec.version>1.15</commons-codec.version>
<commons-csv.version>1.8</commons-csv.version>
<commons-io.version>2.9.0</commons-io.version>
<dropwizard.version>2.0.32</dropwizard.version>
<dropwizard.version>2.0.34</dropwizard.version>
<dropwizard-metrics-datadog.version>1.1.13</dropwizard-metrics-datadog.version>
<grpc.version>1.49.2</grpc.version>
<gson.version>2.9.0</gson.version>

View File

@ -11,7 +11,6 @@ import static org.junit.jupiter.params.provider.Arguments.arguments;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.time.Clock;
import java.time.Instant;
@ -46,7 +45,7 @@ public class ConfiguredProfileBadgeConverterTest {
private ResourceBundle resourceBundle;
@BeforeEach
private void beforeEach() {
void beforeEach() {
resourceBundleFactory = mock(ResourceBundleFactory.class, (invocation) -> {
throw new UnsupportedOperationException();
});