From 382f3de00ae7341185017ebcc6c162eea86cf9c2 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Fri, 22 May 2026 00:19:05 -0400 Subject: [PATCH] testing: Use ProcessInfo As Static Variable Signed-off-by: Will Hawkins --- Tests/Support.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Support.swift b/Tests/Support.swift index 6f88b20..5e5cee1 100644 --- a/Tests/Support.swift +++ b/Tests/Support.swift @@ -39,7 +39,7 @@ typealias TestContentRecord = ( ) func findPathEnv() -> [URL]? { - for (key, value) in ProcessInfo().environment { + for (key, value) in ProcessInfo.processInfo.environment { if key == "PATH" { return value.split(separator: ":").map { URL(filePath: "\($0)") } }