Skip to content

Commit 7bc497f

Browse files
committed
Update
1 parent ad1160f commit 7bc497f

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

Core/Tests/GithubCopilotServiceTests/FetchSuggestionsTests.swift renamed to Core/Tests/GithubCopilotServiceTest/FetchSuggestionsTests.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ import XCTest
66
final class FetchSuggestionTests: XCTestCase {
77
func test_process_sugestions_from_server() async throws {
88
struct TestServer: CopilotLSP {
9+
func sendNotification(_ notif: LanguageServerProtocol.ClientNotification) async throws {
10+
fatalError()
11+
}
12+
913
func sendRequest<E>(_: E) async throws -> E.Response where E: CopilotRequestType {
1014
return CopilotRequest.GetCompletionsCycling.Response(completions: [
1115
.init(
@@ -47,6 +51,10 @@ final class FetchSuggestionTests: XCTestCase {
4751

4852
func test_ignore_empty_suggestions() async throws {
4953
struct TestServer: CopilotLSP {
54+
func sendNotification(_ notif: LanguageServerProtocol.ClientNotification) async throws {
55+
fatalError()
56+
}
57+
5058
func sendRequest<E>(_: E) async throws -> E.Response where E: CopilotRequestType {
5159
return CopilotRequest.GetCompletionsCycling.Response(completions: [
5260
.init(

Core/Tests/GithubCopilotServiceTests/FileExtensionToLanguageIdentifierTests.swift renamed to Core/Tests/GithubCopilotServiceTest/FileExtensionToLanguageIdentifierTests.swift

File renamed without changes.

0 commit comments

Comments
 (0)