Skip to content

Commit 99d3e6e

Browse files
committed
Add missing required kwargs in unit test.
1 parent 256f774 commit 99d3e6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/handler/test_collect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
def _test_collect(*, write_bytes: bytes, read_encoding: str) -> VbaModuleInfo:
1212
with TemporaryDirectory() as tmp_dir_str:
1313
tmp_dir = Path(tmp_dir_str)
14-
handler = get_handler(encoding=read_encoding)
14+
handler = get_handler(encoding=read_encoding, mdx=[], mdx_config={})
1515
p = tmp_dir / "source.bas"
1616
p.write_bytes(write_bytes)
1717
return handler.collect(identifier=p.as_posix(), config={})

0 commit comments

Comments
 (0)