Skip to content

Commit 053c874

Browse files
committed
[TypeChecker] NFC: Scope down per test-case for rdar://74035425
Remove some literals from the test-case to prevent it from randomly failing in some CI configurations. Resolves: rdar://85267603
1 parent 7be6058 commit 053c874

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

validation-test/Sema/type_checker_perf/fast/rdar74035425.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ struct Value {
77
}
88

99
func test(values: [[Value]]) -> String {
10-
"[" + "" + values.map({ "[" + $0.map({ $0.debugDescription }).joined(separator: ", ") + "]" }).joined(separator: ", ") + "]"
10+
values.map({ "[" + $0.map({ $0.debugDescription }).joined(separator: ", ") + "]" }).joined(separator: ", ")
1111
}

0 commit comments

Comments
 (0)