Skip to content

Commit

Permalink
CORE-2042: Fix-up CSS URL
Browse files Browse the repository at this point in the history
  • Loading branch information
vkolomeyko committed Jun 19, 2024
1 parent d647aa5 commit 8af94f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ class RestServerOpenApiTest : RestServerTestBase() {
val swaggerUIversion = OptionalDependency.SWAGGERUI.version
val swagger = baseClient.call(GET, WebRequest<Any>("api/${apiVersion.versionPath}/swagger"))
val swaggerUIBundleJS = baseClient.call(GET, WebRequest<Any>("webjars/swagger-ui/$swaggerUIversion/swagger-ui-bundle.js"))
val swaggerUIcss = baseClient.call(GET, WebRequest<Any>("webjars/swagger-ui/$swaggerUIversion/swagger-ui-bundle.js"))
val swaggerUIcss = baseClient.call(GET, WebRequest<Any>("webjars/swagger-ui/$swaggerUIversion/swagger-ui-bundle.css"))

assertEquals(HttpStatus.SC_OK, swagger.responseStatus)
assertEquals(HttpStatus.SC_OK, swaggerUIBundleJS.responseStatus)
Expand Down

0 comments on commit 8af94f3

Please sign in to comment.