Skip to content

Commit

Permalink
Merge branch '2.0.x' into 2.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Mar 12, 2019
2 parents 7b78367 + 50d0b4d commit 078bd89
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2018 the original author or authors.
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -25,7 +25,6 @@
import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.reactive.server.WebTestClient;

import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.boot.test.autoconfigure.AutoConfigurationImportedCondition.importedAutoConfiguration;
Expand Down Expand Up @@ -54,11 +53,4 @@ public void validationAutoConfigurationIsImported() {
.has(importedAutoConfiguration(ValidationAutoConfiguration.class));
}

@Test
public void whatever() {
WebTestClient client = this.applicationContext.getBean(WebTestClient.class);

System.out.println(client);
}

}

0 comments on commit 078bd89

Please sign in to comment.