Skip to content

Commit 34cc5df

Browse files
committed
Fix table name.
1 parent 151fd17 commit 34cc5df

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ALTER TABLE temp_inntekt_V1_person_mapping_
2+
RENAME TO temp_inntekt_V1_person_mapping;
3+
4+

dp-inntekt-api/src/test/kotlin/no/nav/dagpenger/inntekt/db/PostgresTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ internal class PostgresTest {
3333
fun `Migration scripts are applied successfully`() {
3434
withCleanDb {
3535
val migrations = migrate(DataSource.instance)
36-
assertEquals(11, migrations, "Wrong number of migrations")
36+
assertEquals(12, migrations, "Wrong number of migrations")
3737
}
3838
}
3939

@@ -51,7 +51,7 @@ internal class PostgresTest {
5151
fun `Migration of testdata `() {
5252
withCleanDb {
5353
val migrations = migrate(DataSource.instance, locations = listOf("db/migration", "db/testdata"))
54-
assertEquals(16, migrations, "Wrong number of migrations")
54+
assertEquals(17, migrations, "Wrong number of migrations")
5555
}
5656
}
5757

0 commit comments

Comments
 (0)