Revert "Comment out milestone versions and related tests."

This reverts commit 8a5b8975
This commit is contained in:
spencergibb
2021-03-18 11:58:32 -04:00
parent 0e11abead3
commit f141261c15
2 changed files with 4 additions and 7 deletions

View File

@@ -106,11 +106,11 @@
<artifactId>spring-cloud-contract-verifier</artifactId>
<scope>test</scope>
</dependency>
<!--<dependency>
<dependency>
<groupId>com.example.github</groupId>
<artifactId>github-webhook</artifactId>
<classifier>stubs</classifier>
<version>1.0.0.1-190120_193303-VERSION</version>
<version>1.0.0.M1-190120_193303-VERSION</version>
<scope>test</scope>
<exclusions>
<exclusion>
@@ -123,7 +123,7 @@
<groupId>com.example.github</groupId>
<artifactId>github-analytics</artifactId>
<classifier>stubs</classifier>
<version>1.0.0.1-190120_105104-VERSION</version>
<version>1.0.0.M1-190120_105104-VERSION</version>
<scope>test</scope>
<exclusions>
<exclusion>
@@ -131,7 +131,7 @@
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>-->
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>

View File

@@ -17,7 +17,6 @@
package org.springframework.cloud.contract.wiremock;
import org.assertj.core.api.BDDAssertions;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -41,7 +40,6 @@ public class AutoConfigureWireMockFilesApplicationWithUrlResourceTests {
int wiremockPort;
@Test
@Ignore
public void should_work_for_analytics() throws Exception {
String count = new RestTemplate().getForObject("http://localhost:" + this.wiremockPort + "/issues/count",
String.class);
@@ -50,7 +48,6 @@ public class AutoConfigureWireMockFilesApplicationWithUrlResourceTests {
}
@Test
@Ignore
public void should_work_for_webhook() throws Exception {
String response = new RestTemplate().getForObject("http://localhost:" + this.wiremockPort + "/", String.class);