Skip to content

Commit 5cdb62f

Browse files
committed
Fix formatting
1 parent cde67af commit 5cdb62f

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

Tests/SwiftSDKGeneratorTests/SwiftSDKRecipes/WebAssemblyRecipe.swift

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,16 @@ final class WebAssemblyRecipeTests: XCTestCase {
5050
targetTriple: Triple("wasm32-unknown-wasi"),
5151
isForEmbeddedSwift: true
5252
)
53-
XCTAssertEqual(toolset.swiftCompiler?.extraCLIOptions, [
54-
"-static-stdlib",
55-
"-enable-experimental-feature", "Embedded", "-wmo",
56-
] + ["-lc++", "-lswift_Concurrency", "-lswift_ConcurrencyDefaultExecutor"].flatMap {
57-
["-Xlinker", $0]
58-
})
53+
XCTAssertEqual(
54+
toolset.swiftCompiler?.extraCLIOptions,
55+
[
56+
"-static-stdlib",
57+
"-enable-experimental-feature", "Embedded", "-wmo",
58+
]
59+
+ ["-lc++", "-lswift_Concurrency", "-lswift_ConcurrencyDefaultExecutor"].flatMap {
60+
["-Xlinker", $0]
61+
}
62+
)
5963
XCTAssertEqual(toolset.cCompiler?.extraCLIOptions, ["-D__EMBEDDED_SWIFT__"])
6064
XCTAssertEqual(toolset.cxxCompiler?.extraCLIOptions, ["-D__EMBEDDED_SWIFT__"])
6165
XCTAssertNil(toolset.linker)

0 commit comments

Comments
 (0)