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 151ac12 commit a1a92c9Copy full SHA for a1a92c9
Tests/SourceKitLSPTests/CodeLensTests.swift
@@ -104,11 +104,11 @@ final class CodeLensTests: XCTestCase {
104
[
105
CodeLens(
106
range: positions["1️⃣"]..<positions["2️⃣"],
107
- command: Command(title: "Run MyApp", command: "swift.run", arguments: nil)
+ command: Command(title: "Run MyApp", command: "swift.run", arguments: [.string("MyApp")])
108
),
109
110
111
- command: Command(title: "Debug MyApp", command: "swift.debug", arguments: nil)
+ command: Command(title: "Debug MyApp", command: "swift.debug", arguments: [.string("MyApp")])
112
113
]
114
)
0 commit comments