Skip to content

Commit ffec1dd

Browse files
committed
.
1 parent 819a3ce commit ffec1dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scalasql/test/src/WorldSqlTests.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1433,16 +1433,16 @@ object WorldSqlTests extends TestSuite {
14331433
}
14341434
db.run(
14351435
City.insert.columns(
1436-
_.id := CityId(31337),
1436+
_.id := CityId(313373),
14371437
_.name := "test",
14381438
_.countryCode := "XYZ",
14391439
_.district := "district",
14401440
_.population := 1000000
14411441
)
14421442
)
14431443

1444-
db.run(City.select.filter(_.id === 31337).single) ==>
1445-
City[Sc](CityId(31337), "test", "XYZ", "district", 1000000)
1444+
db.run(City.select.filter(_.id === 313373).single) ==>
1445+
City[Sc](CityId(313373), "test", "XYZ", "district", 1000000)
14461446
// -DOCS
14471447

14481448
// You can also use `TypeMapper#bimap` for the common case where you want the

0 commit comments

Comments
 (0)