From 4075d92439329331bf339c8bd6243d125ad36100 Mon Sep 17 00:00:00 2001 From: Chalmer Lowe Date: Tue, 30 May 2023 14:10:42 +0000 Subject: [PATCH] Adds keyword argument to test due to changes in sqlalchemy alembic --- tests/system/test_alembic.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/system/test_alembic.py b/tests/system/test_alembic.py index 1d77da28..1948a19a 100644 --- a/tests/system/test_alembic.py +++ b/tests/system/test_alembic.py @@ -149,9 +149,7 @@ def test_alembic_scenario(alembic_table): """ ) - # One thing we can alter about a column is we can make it - # nullable: - op.alter_column("transactions", "amount", True) + op.alter_column("transactions", "amount", nullable=True) assert alembic_table("transactions", "schema") == [ SchemaField("account", "INTEGER", "REQUIRED"), SchemaField("transaction_time", "DATETIME", "REQUIRED"),