Skip to content

Commit

Permalink
Suppress warnings from UnusedParameterFixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
ileitch committed Sep 26, 2023
1 parent 45ab5a4 commit 2ccf9f2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ var targets: [PackageDescription.Target] = [
),
.target(
name: "UnusedParameterFixtures",
path: "Tests/Fixtures/UnusedParameterFixtures"
path: "Tests/Fixtures/UnusedParameterFixtures",
swiftSettings: [
.unsafeFlags(["-suppress-warnings"]) // Suppress warnings from testLocalVariableAssignment
]
),
.target(
name: "TypeSyntaxInspectorFixtures",
Expand Down

0 comments on commit 2ccf9f2

Please sign in to comment.