diff --git a/libs/checkpoint-postgres/tests/test_async_store.py b/libs/checkpoint-postgres/tests/test_async_store.py index 94dc1fa03..e6122442f 100644 --- a/libs/checkpoint-postgres/tests/test_async_store.py +++ b/libs/checkpoint-postgres/tests/test_async_store.py @@ -60,9 +60,7 @@ async def store(request) -> AsyncIterator[AsyncPostgresStore]: ) as store: store.MIGRATIONS = [ ( - mig.replace( - "ADD COLUMN ttl_minutes INT;", "ADD COLUMN ttl_minutes FLOAT;" - ) + mig.replace("ttl_minutes INT;", "ttl_minutes FLOAT;") if isinstance(mig, str) else mig ) diff --git a/libs/checkpoint-postgres/tests/test_store.py b/libs/checkpoint-postgres/tests/test_store.py index a1360174a..4424b7d43 100644 --- a/libs/checkpoint-postgres/tests/test_store.py +++ b/libs/checkpoint-postgres/tests/test_store.py @@ -52,9 +52,7 @@ def store(request) -> PostgresStore: with PostgresStore.from_conn_string(conn_string, ttl=ttl_config) as store: store.MIGRATIONS = [ ( - mig.replace( - "ADD COLUMN ttl_minutes INT;", "ADD COLUMN ttl_minutes FLOAT;" - ) + mig.replace("ttl_minutes INT;", "ttl_minutes FLOAT;") if isinstance(mig, str) else mig )