Skip to content

Commit 7a63bc8

Browse files
Fix formatting
1 parent ef8d1af commit 7a63bc8

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

apps/bfd-pipeline-idr/test/test_pipeline.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -653,13 +653,16 @@ def _test_load_progress_concurrent(conn: Connection) -> None:
653653
rows = cur.fetchmany(1)
654654
assert rows_2[0]["max_run_ts"] == rows[0]["last_ts"]
655655
# test table counts
656-
cur = conn.execute("select DISTINCT table_name from idr.load_progress where job_id = 1" \
657-
" EXCEPT " \
658-
"select DISTINCT table_name from idr.load_progress where job_id = 2")
656+
cur = conn.execute(
657+
"select DISTINCT table_name from idr.load_progress where job_id = 1"
658+
" EXCEPT "
659+
"select DISTINCT table_name from idr.load_progress where job_id = 2"
660+
)
659661
rows = cur.fetchmany(1)
660662
cur = conn.execute("select count(*) as row_count from idr.load_progress where job_id = 2")
661663
assert len(rows) == 0
662664

665+
663666
def test_initial_pipeline_load(postgres_db: tuple[PostgresContainer, str]) -> None:
664667
_test_pipeline_load(postgres_db, LoadType.INITIAL)
665668

0 commit comments

Comments
 (0)