From c6b605ec8b7013af49e433ded9efc9fd09821229 Mon Sep 17 00:00:00 2001 From: nargis-sultani <102271080+nargis-sultani@users.noreply.github.com> Date: Mon, 18 Mar 2024 17:20:44 -0400 Subject: [PATCH] 121 - removed comment from test_lookup_tables_data_seed.py (#122) closes [#121 ](https://github.com/cfpb/regtech-user-fi-management/issues/121) Co-authored-by: Nargis Sultani --- tests/migrations/test_lookup_tables_data_seed.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/migrations/test_lookup_tables_data_seed.py b/tests/migrations/test_lookup_tables_data_seed.py index e4e0c90..90940f1 100644 --- a/tests/migrations/test_lookup_tables_data_seed.py +++ b/tests/migrations/test_lookup_tables_data_seed.py @@ -70,7 +70,6 @@ def test_hmda_institution_type_data_seed(alembic_runner: MigrationContext, alemb alembic_runner.migrate_up_one() with alembic_engine.connect() as conn: hmda_institution_type_rows = conn.execute( - # text("SELECT id, name from %s" % hmda_institution_type_tablename) text("SELECT id, name from %s where id = :id" % hmda_institution_type_tablename), (dict(id="1")), ).fetchall()