Skip to content

Commit

Permalink
Updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
camratchford committed Dec 16, 2024
1 parent ddd7a3c commit 11b31f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/fixtures/configs/from_defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dry_run: false
log_level: ERROR
log_path: null
stdout: false
verbose: false
force_overwrite: false
plugin_config:
named_modules:
Expand Down
1 change: 1 addition & 0 deletions tests/output/exported_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dry_run: false
log_level: ERROR
log_path: null
stdout: false
verbose: false
force_overwrite: false
plugin_config:
path_modules: []
Expand Down
2 changes: 1 addition & 1 deletion tests/test_plugin_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_multiple_plugin_managers():
jinja_filter_plugin_class = jinja_filter_manager.plugins.get("jinja_filter")
jinja_filter_plugin_result = jinja_filter_plugin_class(["abc", "ab", "a"])

assert jinja_filter_plugin_result == "['abc', 'ab']"
assert jinja_filter_plugin_result == ['abc', 'ab']


def test_plugin_manager_construct_plugins_dict():
Expand Down

0 comments on commit 11b31f8

Please sign in to comment.