Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
DeltaDaniel committed Nov 5, 2024
1 parent 407a9dc commit d897f81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unittests/test_highlevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,11 @@ def test_extraction(self, datafiles, get_ebd_keys_and_files: List[Tuple[str, str
try:
docx_tables = get_ebd_docx_tables(datafiles, filename, ebd_key=ebd_key)
if isinstance(docx_tables, str):
actual = EbdTableMetaData(
actual_meta_data = EbdTableMetaData(
ebd_code=ebd_key, chapter="Dummy Chapter", sub_chapter="Dummy Subchapter", role=docx_tables
)
# need to adapt EbdTableMetaData
assert actual == snapshot(name=ebd_key)
assert actual_meta_data == snapshot(name=ebd_key)
else:
converter = DocxTableConverter(
docx_tables, ebd_key=ebd_key, chapter="Dummy Chapter", sub_chapter="Dummy Subchapter"
Expand Down

0 comments on commit d897f81

Please sign in to comment.