From 2bc9758dd9e1776ebed717f1903ce4266cdf471f Mon Sep 17 00:00:00 2001 From: Michael Welborn Date: Fri, 27 Feb 2026 10:32:37 -0600 Subject: [PATCH 1/2] Fix typo in test fixture name --- tests/etloutput/test_token_table_cell.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/etloutput/test_token_table_cell.py b/tests/etloutput/test_token_table_cell.py index e9f5694..b3d99b3 100644 --- a/tests/etloutput/test_token_table_cell.py +++ b/tests/etloutput/test_token_table_cell.py @@ -43,7 +43,7 @@ def line_item_span() -> Span: @pytest.fixture -def mulitple_table_span() -> Span: +def multiple_table_span() -> Span: return Span(page=1, start=1217, end=1299) @@ -107,8 +107,8 @@ def test_table_cells(etl_output: EtlOutput, line_item_span: Span) -> None: assert cell == correct_cell -def test_multiple_tables(etl_output: EtlOutput, mulitple_table_span: Span) -> None: - table_cells = etl_output.table_cells_for(mulitple_table_span) +def test_multiple_tables(etl_output: EtlOutput, multiple_table_span: Span) -> None: + table_cells = etl_output.table_cells_for(multiple_table_span) cells = [cell for (table, cell) in table_cells] _correct_cells = etl_output.tables[2].rows[-1] + etl_output.tables[3].rows[0] correct_cells = [cell for cell in _correct_cells if cell.text] From a9ce69b91d2e7abcbf4f03201137f9d442b64cb8 Mon Sep 17 00:00:00 2001 From: Michael Welborn Date: Fri, 27 Feb 2026 10:32:55 -0600 Subject: [PATCH 2/2] Fix typo in line item span end index --- tests/etloutput/test_token_table_cell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/etloutput/test_token_table_cell.py b/tests/etloutput/test_token_table_cell.py index b3d99b3..992546c 100644 --- a/tests/etloutput/test_token_table_cell.py +++ b/tests/etloutput/test_token_table_cell.py @@ -39,7 +39,7 @@ def content_span() -> Span: @pytest.fixture def line_item_span() -> Span: - return Span(page=1, start=1311, end=1244) + return Span(page=1, start=1311, end=1344) @pytest.fixture