#133 - Upgrade to Spring Boot 2.2.

This commit is contained in:
Mark Paluch
2019-11-20 14:13:42 +01:00
parent 75c63aff1e
commit 989e6dd150
17 changed files with 161 additions and 153 deletions

View File

@@ -15,7 +15,6 @@
*/
package org.springframework.data.release.deployment;
import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;
import org.junit.Test;
@@ -45,7 +44,7 @@ public class DeploymentOperationsUnitTests {
operations.promote(information);
verify(logger).log(eq(module), any());
verifyZeroInteractions(client);
verify(logger).log(eq(module), anyString());
verifyNoInteractions(client);
}
}

View File

@@ -148,7 +148,7 @@ public class GitHubIssueTrackerIntegrationTests extends AbstractIntegrationTests
github.createReleaseVersion(BUILD_HOPPER_RC1);
verify(postRequestedFor(urlPathMatching(MILESTONES_URI)).withRequestBody(
equalToJson("{\"title\":\"1.8 RC1 (Hopper)\", \"description\":\"Hopper RC1\",\"open\":false}")));
equalToJson("{\"title\":\"1.8 RC1 (Hopper)\", \"description\":\"Hopper RC1\"}")));
}
/**