Skip to content

Commit 078bd89

Browse files
committed
Merge branch '2.0.x' into 2.1.x
2 parents 7b78367 + 50d0b4d commit 078bd89

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/reactive/webclient/WebFluxTestAutoConfigurationIntegrationTests.java

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2018 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,7 +25,6 @@
2525
import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest;
2626
import org.springframework.context.ApplicationContext;
2727
import org.springframework.test.context.junit4.SpringRunner;
28-
import org.springframework.test.web.reactive.server.WebTestClient;
2928

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

57-
@Test
58-
public void whatever() {
59-
WebTestClient client = this.applicationContext.getBean(WebTestClient.class);
60-
61-
System.out.println(client);
62-
}
63-
6456
}

0 commit comments

Comments
 (0)