@@ -618,11 +618,20 @@ final class SwiftSDKBundleTests: XCTestCase {
618618 let ( config, fileSystem) = try await createConfigurationStore ( )
619619 var args = SwiftSDK . PathsConfiguration < String > ( )
620620 args. sdkRootPath = " /some/sdk/root/path "
621- let configSuccess = try config. configure ( sdkID: testArtifactID, targetTriple: targetTriple. tripleString, showConfiguration: false , resetConfiguration: false , config: args)
621+ let configSuccess = try config. configure (
622+ sdkID: testArtifactID,
623+ targetTriple: targetTriple. tripleString,
624+ showConfiguration: false ,
625+ resetConfiguration: false ,
626+ config: args
627+ )
622628 XCTAssertTrue ( configSuccess)
623629 XCTAssertTrue ( fileSystem. isFile ( targetTripleConfigPath) )
624630
625- let updatedConfig = try config. readConfiguration ( sdkID: testArtifactID, targetTriple: targetTriple)
631+ let updatedConfig = try config. readConfiguration (
632+ sdkID: testArtifactID,
633+ targetTriple: targetTriple
634+ )
626635 XCTAssertEqual ( args. sdkRootPath, updatedConfig? . pathsConfiguration. sdkRootPath? . pathString)
627636 }
628637
@@ -631,11 +640,23 @@ final class SwiftSDKBundleTests: XCTestCase {
631640 var args = SwiftSDK . PathsConfiguration < String > ( )
632641 args. sdkRootPath = " /some/sdk/root/path "
633642 // an empty targetTriple will configure all triples
634- let configSuccess = try config. configure ( sdkID: testArtifactID, targetTriple: nil , showConfiguration: false , resetConfiguration: false , config: args)
643+ let configSuccess = try config. configure (
644+ sdkID: testArtifactID,
645+ targetTriple: nil ,
646+ showConfiguration: false ,
647+ resetConfiguration: false ,
648+ config: args
649+ )
635650 XCTAssertTrue ( configSuccess)
636651 XCTAssertTrue ( fileSystem. isFile ( targetTripleConfigPath) )
637652
638- let resetSuccess = try config. configure ( sdkID: testArtifactID, targetTriple: nil , showConfiguration: false , resetConfiguration: true , config: args)
653+ let resetSuccess = try config. configure (
654+ sdkID: testArtifactID,
655+ targetTriple: nil ,
656+ showConfiguration: false ,
657+ resetConfiguration: true ,
658+ config: args
659+ )
639660 XCTAssertTrue ( resetSuccess, " Reset configuration should succeed " )
640661 XCTAssertFalse ( fileSystem. isFile ( targetTripleConfigPath) , " Reset configuration should clear configuration folder " )
641662 }
0 commit comments