From f5847993df1f519a978548fb1f2a1bfee54f7856 Mon Sep 17 00:00:00 2001 From: Nargis Sultani Date: Thu, 21 Dec 2023 15:40:35 -0500 Subject: [PATCH] Modified comments, changed feed to seed --- db_revisions/seed.py | 2 +- tests/migrations/test_lookup_tables_data_seed.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/db_revisions/seed.py b/db_revisions/seed.py index 64e2b35..e0e7f8a 100644 --- a/db_revisions/seed.py +++ b/db_revisions/seed.py @@ -4,7 +4,7 @@ federal_regulator hmda_institution_type sbl_institution_type -These are accessed in db_revisions/versions/* scripts and in test/migrations/test_lookup_tables_data_feed . +These are accessed in db_revisions/versions/* scripts and in test/migrations/test_lookup_tables_data_seed . """ address_state_seed = [ diff --git a/tests/migrations/test_lookup_tables_data_seed.py b/tests/migrations/test_lookup_tables_data_seed.py index 41b5ce4..0b5c1c7 100644 --- a/tests/migrations/test_lookup_tables_data_seed.py +++ b/tests/migrations/test_lookup_tables_data_seed.py @@ -14,7 +14,7 @@ def test_address_state_data_seed(alembic_runner: MigrationContext, alembic_engin # Migrate up to, but not including this new migration alembic_runner.migrate_up_before("7b6ff51002b5") - # Test address_state feed + # Test address_state seed address_state_tablename = "address_state" alembic_runner.migrate_up_one() with alembic_engine.connect() as conn: @@ -28,7 +28,7 @@ def test_federal_regulator_data_seed(alembic_runner: MigrationContext, alembic_e # Migrate up to, but not including this new migration alembic_runner.migrate_up_before("26a742d97ad9") - # Test federal_regulator feed + # Test federal_regulator seed federal_regulator_tablename = "federal_regulator" alembic_runner.migrate_up_one() with alembic_engine.connect() as conn: @@ -42,7 +42,7 @@ def test_hmda_institution_type_data_seed(alembic_runner: MigrationContext, alemb # Migrate up to, but not including this new migration alembic_runner.migrate_up_before("f4ff7d1aa6df") - # Test hmda_institution_type feed + # Test hmda_institution_type seed hmda_institution_type_tablename = "hmda_institution_type" alembic_runner.migrate_up_one() with alembic_engine.connect() as conn: @@ -58,7 +58,7 @@ def test_sbl_institution_type_data_seed(alembic_runner: MigrationContext, alembi # Migrate up to, but not including this new migration alembic_runner.migrate_up_before("a41281b1e109") - # Test sbl_institution_type feed + # Test sbl_institution_type seed sbl_institution_type_tablename = "sbl_institution_type" alembic_runner.migrate_up_one() with alembic_engine.connect() as conn: