Skip to content

Commit 6bcd4b6

Browse files
committed
Reformat
1 parent b3391c5 commit 6bcd4b6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Tests/SubprocessTests/PipeConfigurationTests.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ struct PipeConfigurationTests {
3939
#expect(result.terminationStatus.isSuccess)
4040
}
4141

42-
// FIXME - these function tests are hanging on Linux
43-
#if os(macOS)
42+
// FIXME - these function tests are hanging on Linux
43+
#if os(macOS)
4444
@Test func testBasicSwiftFunctionBeginning() async throws {
4545
let config =
4646
pipe { input, output, error in
@@ -133,7 +133,7 @@ struct PipeConfigurationTests {
133133
#expect(result.standardOutput?.trimmingCharacters(in: .whitespacesAndNewlines) == "Hello World")
134134
#expect(result.terminationStatus.isSuccess)
135135
}
136-
#endif
136+
#endif
137137

138138
@Test func testPipeConfigurationWithConfiguration() async throws {
139139
let configuration = Configuration(
@@ -398,8 +398,8 @@ struct PipeConfigurationTests {
398398
#expect(result.terminationStatus.isSuccess)
399399
}
400400

401-
// FIXME - These tests are hanging on Linux
402-
#if os(macOS)
401+
// FIXME - These tests are hanging on Linux
402+
#if os(macOS)
403403
@Test func testSwiftFunctionWithFileDescriptorInput() async throws {
404404
// Create a temporary file with JSON content
405405
let tempURL = FileManager.default.temporaryDirectory.appendingPathComponent("json_test_\(UUID().uuidString).json")
@@ -452,7 +452,7 @@ struct PipeConfigurationTests {
452452
#expect(result.standardOutput?.contains("Person: Alice, Age: 30, Location: New York") == true)
453453
#expect(result.terminationStatus.isSuccess)
454454
}
455-
#endif
455+
#endif
456456

457457
@Test func testComplexPipelineWithStringInputAndSwiftFunction() async throws {
458458
let csvData = "name,score,grade\nAlice,95,A\nBob,87,B\nCharlie,92,A\nDave,78,C"
@@ -496,8 +496,8 @@ struct PipeConfigurationTests {
496496
#expect(result.terminationStatus.isSuccess)
497497
}
498498

499-
// FIXME - this test is hanging on Linux
500-
#if os(macOS)
499+
// FIXME - this test is hanging on Linux
500+
#if os(macOS)
501501
@Test func testMultiStageSwiftFunctionPipelineWithStringInput() async throws {
502502
let numbers = "10\n25\n7\n42\n13\n8\n99"
503503

@@ -554,7 +554,7 @@ struct PipeConfigurationTests {
554554

555555
#expect(result.terminationStatus.isSuccess)
556556
}
557-
#endif
557+
#endif
558558

559559
// MARK: - Shared Error Handling Tests
560560

0 commit comments

Comments
 (0)