Skip to content

Commit 00bbf1b

Browse files
committed
[test] Fix flaky test
1 parent a84ece7 commit 00bbf1b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

validation-test/stdlib/Dictionary.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ DictionaryTestSuite.test("COW.Fast.KeysAccessDoesNotReallocate") {
13741374
{ $0 == $1 }
13751375

13761376
do {
1377-
let d2: [MinimalHashableValue : Int] = [
1377+
var d2: [MinimalHashableValue : Int] = [
13781378
MinimalHashableValue(10): 1010,
13791379
MinimalHashableValue(20): 1020,
13801380
MinimalHashableValue(30): 1030,
@@ -1385,6 +1385,8 @@ DictionaryTestSuite.test("COW.Fast.KeysAccessDoesNotReallocate") {
13851385
MinimalHashableValue(80): 1080,
13861386
MinimalHashableValue(90): 1090,
13871387
]
1388+
// Make collisions less likely
1389+
d2.reserveCapacity(1000)
13881390

13891391
// Find the last key in the dictionary
13901392
var lastKey: MinimalHashableValue = d2.first!.key

0 commit comments

Comments
 (0)