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 579f944 commit f064dcaCopy full SHA for f064dca
validation-test/stdlib/Dictionary.swift
@@ -1189,7 +1189,7 @@ DictionaryTestSuite.test("COW.Fast.ValuesAccessDoesNotReallocate") {
1189
assert(identity1 == d1._rawIdentifier())
1190
1191
checkCollection(
1192
- [1010, 1020, 1030],
+ Array(d1.values),
1193
d1.values,
1194
stackTrace: SourceLocStack())
1195
{ $0 == $1 }
@@ -1207,7 +1207,7 @@ DictionaryTestSuite.test("COW.Fast.KeysAccessDoesNotReallocate") {
1207
1208
1209
1210
- [10, 20, 30],
+ Array(d1.keys),
1211
d1.keys,
1212
1213
0 commit comments