Skip to content

Commit

Permalink
Aim at debugging failing CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
groue committed Aug 25, 2024
1 parent 451a9eb commit d96dc2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/GRDBTests/ValueObservationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@ class ValueObservationTests: GRDBTestCase {
try Table("t").fetchCount($0)
}

let initialValueExpectation = self.expectation(description: "")
let initialValueExpectation = self.expectation(description: "initialValue")
#if SQLITE_ENABLE_SNAPSHOT || (!GRDBCUSTOMSQLITE && !GRDBCIPHER)
initialValueExpectation.assertForOverFulfill = true
#else
Expand All @@ -1104,7 +1104,7 @@ class ValueObservationTests: GRDBTestCase {
#endif
initialValueExpectation.expectedFulfillmentCount = observationCount

let secondValueExpectation = self.expectation(description: "")
let secondValueExpectation = self.expectation(description: "secondValue")
secondValueExpectation.expectedFulfillmentCount = observationCount

var cancellables: [AnyDatabaseCancellable] = []
Expand Down

0 comments on commit d96dc2d

Please sign in to comment.