Skip to content

Commit

Permalink
Tests: Fix duplicate variant kwarg
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Bargull <marcel.bargull@udo.edu>
  • Loading branch information
mbargull committed Nov 10, 2023
1 parent 6456400 commit c1c35b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def boolify(v):
verbose=True,
activate=False,
debug=False,
variant=None,
test_run_post=False,
# These bits ensure that default values are used instead of any
# present in ~/.condarc
Expand All @@ -102,7 +101,7 @@ def boolify(v):
exit_on_verify_error=exit_on_verify_error_default,
conda_pkg_format=conda_pkg_format_default,
)
result = Config(**testing_config_kwargs)
result = Config(variant=None, **testing_config_kwargs)
result._testing_config_kwargs = testing_config_kwargs
assert result.no_rewrite_stdout_env is False
assert result._src_cache_root is None
Expand Down

0 comments on commit c1c35b7

Please sign in to comment.