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.
1 parent 3462993 commit a22ee27Copy full SHA for a22ee27
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