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: clients/graphql-kotlin-spring-client/src/test/kotlin/com/expediagroup/graphql/client/spring/GraphQLWebClientTest.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -475,7 +475,7 @@ class GraphQLWebClientTest {
475
475
client.execute(HelloWorldQuery())
476
476
}
477
477
}
478
-
assertEquals(500, error.rawStatusCode)
478
+
assertEquals(500, error.statusCode.value())
479
479
assertEquals("Internal server error", error.responseBodyAsString)
Copy file name to clipboardExpand all lines: generator/graphql-kotlin-federation/build.gradle.kts
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,11 @@ dependencies {
12
12
api(libs.graphql.java)
13
13
testImplementation(libs.reactor.core)
14
14
testImplementation(libs.reactor.extensions)
15
-
testImplementation(libs.junit.params)
15
+
constraints {
16
+
implementation(libs.commons.codec) {
17
+
because("Cxeb68d52e-5509: Apache commons-codec before 1.13 is vulnerable to information exposure. https://devhub.checkmarx.com/cve-details/Cxeb68d52e-5509/")
0 commit comments