Skip to content

Commit 6c3bdba

Browse files
committed
fix tests
1 parent 495db9b commit 6c3bdba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/FluentPostgreSQLTests/FluentPostgreSQLTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ class FluentPostgreSQLTests: XCTestCase {
166166
func testGH21() throws {
167167
/// - types
168168
enum PetType: Int, PostgreSQLEnumType {
169-
case cat = 1
170-
case dog = 2
169+
case cat = 0
170+
case dog = 1
171171
}
172172
struct Pet: PostgreSQLModel, Migration {
173173
static let entity = "pets"

0 commit comments

Comments
 (0)