We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59fe523 commit c1bf5c9Copy full SHA for c1bf5c9
benchmark/Package.swift
@@ -31,7 +31,7 @@ func getSingleSourceLibraries(subDirectory: String) -> [String] {
31
let name = String(path.lastPathComponent.prefix(upTo: lastDot))
32
33
// Test names must have a single component.
34
- guard name.contains(".") else { return nil }
+ if name.contains(".") { return nil }
35
36
if unsupportedTests.contains(name) {
37
// We do not support this test.
0 commit comments