We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e4dcd8 commit c64c4baCopy full SHA for c64c4ba
validation-test/stdlib/Dictionary.swift
@@ -3134,8 +3134,8 @@ DictionaryTestSuite.test("BridgedFromObjC.Nonverbatim.StringEqualityMismatch") {
3134
nsd.setObject(42, forKey: cafe1)
3135
nsd.setObject(23, forKey: cafe2)
3136
expectEqual(2, nsd.count)
3137
- expectTrue((42 as NSNumber).isEqual(to: nsd.object(forKey: cafe1)))
3138
- expectTrue((23 as NSNumber).isEqual(to: nsd.object(forKey: cafe2)))
+ expectTrue((42 as NSNumber).isEqual(nsd.object(forKey: cafe1)))
+ expectTrue((23 as NSNumber).isEqual(nsd.object(forKey: cafe2)))
3139
3140
let d = convertNSDictionaryToDictionary(nsd) as [String: Int]
3141
expectEqual(1, d.count)
0 commit comments