You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: springdoc-openapi-webflux-core/src/test/java/test/org/springdoc/api/core/ReactiveAutoConfigurationTest.java
+5-5
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ public void configurations_successfully_loaded() {
37
37
contextRunner
38
38
.run(context -> assertThat(context)
39
39
.hasNotFailed()
40
-
.hasBean("webfluxOpenApiResource"));
40
+
.hasBean("openApiResource"));
41
41
}
42
42
43
43
@Test
@@ -46,7 +46,7 @@ public void configurations_not_loaded_when_application_is_not_web() {
46
46
.withUserConfiguration(TestApp.class)
47
47
.run(context -> assertThat(context)
48
48
.hasNotFailed()
49
-
.doesNotHaveBean("webfluxOpenApiResource"));
49
+
.doesNotHaveBean("openApiResource"));
50
50
}
51
51
52
52
@Test
@@ -55,7 +55,7 @@ public void configurations_not_loaded_when_disabled() {
Copy file name to clipboardExpand all lines: springdoc-openapi-webmvc-core/src/test/java/test/org/springdoc/api/app72/BlockingAutoConfigurationTest.java
+11-11
Original file line number
Diff line number
Diff line change
@@ -40,9 +40,9 @@ public void configurations_successfully_loaded() {
0 commit comments