From 15916c0c328339f54c15d616465d79700e3f7de8 Mon Sep 17 00:00:00 2001 From: stephencelis Date: Wed, 3 Jan 2024 16:44:55 +0000 Subject: [PATCH] Run swift-format --- Tests/MacroTestingTests/MacroExamples/OptionSetMacro.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/MacroTestingTests/MacroExamples/OptionSetMacro.swift b/Tests/MacroTestingTests/MacroExamples/OptionSetMacro.swift index 80b22c8..f2db89f 100644 --- a/Tests/MacroTestingTests/MacroExamples/OptionSetMacro.swift +++ b/Tests/MacroTestingTests/MacroExamples/OptionSetMacro.swift @@ -156,7 +156,7 @@ extension OptionSetMacro: ExtensionMacro { // If there is an explicit conformance to OptionSet already, don't add one. if let inheritedTypes = structDecl.inheritanceClause?.inheritedTypes, inheritedTypes.contains(where: { inherited in inherited.type.trimmedDescription == "OptionSet" - }) + }) { return [] }