Skip to content

Commit 12ab2ab

Browse files
committed
Remove custom filter
1 parent 3474461 commit 12ab2ab

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Sources/SPMGraphTests/SPMGraphTests.swift

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -266,12 +266,8 @@ private extension SPMGraphTests {
266266
allTestModulesToRun += testModulesToRun
267267
}
268268

269-
return Array( // Maps the Array from a Set to ensure there are no duplicates. To be revisited.
270-
Set(
271-
allTestModulesToRun
272-
.filter(\.name != "WorldTests") // hack to unblock CI, check back soon
273-
)
274-
)
269+
// Remove duplicate test modules
270+
return allTestModulesToRun.spm_uniqueElements()
275271
}
276272

277273
/// A function that generates the output with tests to run

0 commit comments

Comments
 (0)