We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3462993 + a22ee27 commit a5cf460Copy full SHA for a5cf460
bsp-testkit/client/TestClient.kt
@@ -156,7 +156,9 @@ class TestClient(
156
test(timeout) { session, _ ->
157
session.client.clearDiagnostics()
158
val result = session.server.buildTargetCompile(transformedParams).await()
159
- assertIterableEquals(expectedDiagnostics, session.client.publishDiagnosticsNotifications)
+ expectedDiagnostics.zip(session.client.publishDiagnosticsNotifications).forEach{
160
+ assertJsonEquals(it.first, it.second)
161
+ }
162
assertJsonEquals(expectedResult, result)
163
}
164
0 commit comments