Skip to content

Commit 5869403

Browse files
authored
[lldb] Fix incorrect FileCheck labels in SetBridging.test (#9927)
1 parent e0c76ce commit 5869403

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/Shell/SwiftREPL/SetBridging.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import Foundation
99

1010
// Baseline case: empty Set
1111
let s0: Set<Int> = []
12-
// DICT-LABEL: s0: Set<Int> = 0 values
12+
// SET-LABEL: s0: Set<Int> = 0 values
1313

1414
// All empty sets use the same type-punned storage class.
1515
let s0b = s0 as NSSet
16-
// DICT-LABEL: s0b: {{(__RawNativeSetStorage|__EmptySetSingleton)}} = 0 values
16+
// SET-LABEL: s0b: {{(__RawNativeSetStorage|__EmptySetSingleton)}} = 0 values
1717

1818
// Baseline case: native Set of non-verbatim bridged elements
1919
let s1: Set<Int> = [1]

0 commit comments

Comments
 (0)