Skip to content

Commit a4bd5a6

Browse files
committed
fixed DB test
1 parent 5950025 commit a4bd5a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

db/src/test/java/org/sterl/spring/persistent_tasks/db/ApplyLiquibaseTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ void test() throws Exception {
5555
Map.of("TABLE_NAME", "PT_SCHEDULER",
5656
"TABLE_SCHEMA", "PUBLIC"));
5757
assertThat(tables).contains(
58-
Map.of("TABLE_NAME", "PT_TASK_TRIGGERS",
58+
Map.of("TABLE_NAME", "PT_RUNNING_TRIGGERS",
5959
"TABLE_SCHEMA", "PUBLIC"));
6060
assertThat(tables).contains(
61-
Map.of("TABLE_NAME", "PT_TRIGGER_HISTORY_DETAILS",
61+
Map.of("TABLE_NAME", "PT_COMPLETED_TRIGGERS",
6262
"TABLE_SCHEMA", "PUBLIC"));
6363
assertThat(tables).contains(
64-
Map.of("TABLE_NAME", "PT_TRIGGER_HISTORY_LAST_STATES",
64+
Map.of("TABLE_NAME", "PT_TRIGGER_HISTORY",
6565
"TABLE_SCHEMA", "PUBLIC"));
6666
}
6767

0 commit comments

Comments
 (0)