Skip to content

Commit

Permalink
Fix revision check errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rod-glover committed Dec 12, 2024
1 parent 0316f13 commit 88f5ce8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pycds/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def check_migration_version(
executor, schema_name=get_schema_name(), version="081f17262852"
executor, schema_name=get_schema_name(), version="7ab87f8fbcf4"
):
"""Check that the migration version of the database schema is compatible
with the current version of this package.
Expand Down
2 changes: 1 addition & 1 deletion tests/alembic_migrations/test_check_migration_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def test_get_current_head():
assert get_current_head() == "081f17262852"
assert get_current_head() == "7ab87f8fbcf4"


@pytest.mark.usefixtures("new_db_left")
Expand Down

0 comments on commit 88f5ce8

Please sign in to comment.