Skip to content

Commit

Permalink
Rename sql script in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov committed Apr 16, 2024
1 parent 82bb3da commit 890a392
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ abstract class YdbFlywayBaseTest {
private static final Set<String> EXPECTED_ALL_SCRIPTS = Set.of(
"V1__create_series.sql", "V2__create_seasons.sql",
"V3__create_episodes.sql", "V4__load_data.sql",
"V5__create_series_title_index.sql", "V6__rename_index_title_index.sql"
"V5__create_series_title_index.sql", "V6__rename_series_title_index.sql"
);

@RegisterExtension
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class YdbFlywayBaselineTest extends YdbFlywayBaseTest {

private static final Set<String> EXPECTED_SCRIPTS = Set.of(
"<< Flyway Baseline >>", "V5__create_series_title_index.sql",
"V6__rename_index_title_index.sql", "V4__load_data.sql"
"V6__rename_series_title_index.sql", "V4__load_data.sql"
);

@Test
Expand Down

0 comments on commit 890a392

Please sign in to comment.