Skip to content

Commit 758f561

Browse files
committed
Raise timeout threshold for SQLCipher CI tests
1 parent 40b0e98 commit 758f561

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/GRDBTests/ValueObservationTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -728,11 +728,11 @@ class ValueObservationTests: GRDBTestCase {
728728
})
729729
}
730730

731-
wait(for: [initialValueExpectation], timeout: 1)
731+
wait(for: [initialValueExpectation], timeout: 5)
732732
dbWriter.asyncWriteWithoutTransaction {
733733
try! $0.execute(sql: "INSERT INTO t DEFAULT VALUES")
734734
}
735-
wait(for: [changeExpectation], timeout: 1)
735+
wait(for: [changeExpectation], timeout: 5)
736736

737737
// Cleanup
738738
for cancellable in cancellables { cancellable.cancel() }

0 commit comments

Comments
 (0)