From 63ceaedd1d7e9b599cf68ed2173118015c395b02 Mon Sep 17 00:00:00 2001 From: Stuart Montgomery Date: Tue, 30 Sep 2025 20:43:33 -0500 Subject: [PATCH] AdvancedConsoleOutputRecorderTests is missing an import of Foundation --- Tests/TestingTests/AdvancedConsoleOutputRecorderTests.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tests/TestingTests/AdvancedConsoleOutputRecorderTests.swift b/Tests/TestingTests/AdvancedConsoleOutputRecorderTests.swift index dc8dd5260..2eafb6601 100644 --- a/Tests/TestingTests/AdvancedConsoleOutputRecorderTests.swift +++ b/Tests/TestingTests/AdvancedConsoleOutputRecorderTests.swift @@ -8,7 +8,9 @@ // See https://swift.org/CONTRIBUTORS.txt for Swift project authors // +#if canImport(Foundation) @testable @_spi(Experimental) @_spi(ForToolsIntegrationOnly) import Testing +import Foundation @Suite("Advanced Console Output Recorder Tests") struct AdvancedConsoleOutputRecorderTests { @@ -237,3 +239,4 @@ struct SimpleTestSuite { #expect(Bool(true)) } } +#endif