From 570744c3f477e7c40604753d3bbd4422d9f9473b Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sat, 22 Jan 2022 21:12:23 -0800 Subject: [PATCH] PEG: remove errant XCTest dependency Remove errant `import XCTest`. The core libraries should not depend on the testing framework. --- Sources/Prototypes/PEG/PEGInterpreter.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/Sources/Prototypes/PEG/PEGInterpreter.swift b/Sources/Prototypes/PEG/PEGInterpreter.swift index ef849c3c9..fb736ee3d 100644 --- a/Sources/Prototypes/PEG/PEGInterpreter.swift +++ b/Sources/Prototypes/PEG/PEGInterpreter.swift @@ -9,7 +9,6 @@ // //===----------------------------------------------------------------------===// -import XCTest extension PEG { struct Grammar { var environment: Dictionary