Skip to content

Commit

Permalink
Fix error in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mondeja committed Sep 15, 2022
1 parent 00e0263 commit 42fe9de
Showing 1 changed file with 36 additions and 4 deletions.
40 changes: 36 additions & 4 deletions tests/test_config.py
Expand Up @@ -155,8 +155,24 @@ def _run_test(
),
),
)
def test_config_options(*args):
return _run_test(*args)
def test_config_options(
includer_schema,
content_to_include,
expected_result,
config,
page,
caplog,
tmp_path,
):
return _run_test(
includer_schema,
content_to_include,
expected_result,
config,
page,
caplog,
tmp_path,
)


@unix_only
Expand All @@ -180,5 +196,21 @@ def test_config_options(*args):
),
),
)
def test_config_encoding_option(*args):
return _run_test(*args)
def test_config_encoding_option(
includer_schema,
content_to_include,
expected_result,
config,
page,
caplog,
tmp_path,
):
return _run_test(
includer_schema,
content_to_include,
expected_result,
config,
page,
caplog,
tmp_path,
)

0 comments on commit 42fe9de

Please sign in to comment.