Skip to content

Commit c1bf5c9

Browse files
committed
[benchmark] Fix thinko
1 parent 59fe523 commit c1bf5c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func getSingleSourceLibraries(subDirectory: String) -> [String] {
3131
let name = String(path.lastPathComponent.prefix(upTo: lastDot))
3232

3333
// Test names must have a single component.
34-
guard name.contains(".") else { return nil }
34+
if name.contains(".") { return nil }
3535

3636
if unsupportedTests.contains(name) {
3737
// We do not support this test.

0 commit comments

Comments
 (0)