File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ let package = Package(
11
11
dependencies: [
12
12
// TODO: use a released version of swift-jobs
13
13
. package ( url: " https://github.com/hummingbird-project/swift-jobs.git " , branch: " main " ) ,
14
- . package ( url: " https://github.com/hummingbird-project/hummingbird- postgres.git " , from: " 0.6 .0 " ) ,
14
+ . package ( url: " https://github.com/hummingbird-project/postgres-migrations .git " , from: " 0.1 .0 " ) ,
15
15
. package ( url: " https://github.com/vapor/postgres-nio.git " , from: " 1.25.0 " ) ,
16
16
] ,
17
17
targets: [
18
18
. target(
19
19
name: " JobsPostgres " ,
20
20
dependencies: [
21
- . product( name: " PostgresMigrations " , package : " hummingbird- postgres" ) ,
21
+ . product( name: " PostgresMigrations " , package : " postgres-migrations " ) ,
22
22
. product( name: " Jobs " , package : " swift-jobs " ) ,
23
23
. product( name: " PostgresNIO " , package : " postgres-nio " ) ,
24
24
]
Original file line number Diff line number Diff line change @@ -407,7 +407,7 @@ final class JobsTests: XCTestCase {
407
407
struct TestParameters : JobParameters {
408
408
static let jobName = " testErrorRetryCount "
409
409
}
410
- let expectation = XCTestExpectation ( description: " TestJob.execute was called " , expectedFulfillmentCount: 4 )
410
+ let expectation = XCTestExpectation ( description: " TestJob.execute was called " , expectedFulfillmentCount: 3 )
411
411
struct FailedError : Error { }
412
412
try await self . testJobQueue ( numWorkers: 1 ) { jobQueue in
413
413
jobQueue. registerJob (
You can’t perform that action at this time.
0 commit comments