Skip to content

Commit 4112ff3

Browse files
author
Guido Marucci Blas
committed
Increase wait timeout for tests.
1 parent 9f1532f commit 4112ff3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReactiveArrayTests/ReactiveArraySpec.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private func waitForOperation<T>(fromProducer producer: SignalProducer<Operation
1818
onUpdate: (T, Int) -> () = { fail("Invalid operation type: .Update(\($0), \($1))") },
1919
onDelete: Int -> () = { fail("Invalid operation type: .Delete(\($0))") }) {
2020

21-
waitUntil { done in
21+
waitUntil(timeout: 10.0) { done in
2222
producer.startWithNext { operation in
2323
switch operation {
2424
case .Append(let value):

0 commit comments

Comments
 (0)