From a355005e6c00775bb567e1d5927a4d57423474c9 Mon Sep 17 00:00:00 2001 From: Matt <85322+mattmassicotte@users.noreply.github.com> Date: Mon, 27 Nov 2023 11:36:11 -0500 Subject: [PATCH] Restore Equatable for MockServer.ClientMessage --- Sources/LSPClient/Client.MockServer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/LSPClient/Client.MockServer.swift b/Sources/LSPClient/Client.MockServer.swift index 87a0f36..103ee99 100644 --- a/Sources/LSPClient/Client.MockServer.swift +++ b/Sources/LSPClient/Client.MockServer.swift @@ -9,7 +9,7 @@ extension AsyncSequence { /// Simulate LSP communication. public actor MockServer: ServerConnection { - public enum ClientMessage: Sendable { + public enum ClientMessage: Equatable, Sendable { case notification(ClientNotification) case request(ClientRequest) }