Skip to content

Commit

Permalink
Remove superfluous set copy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jendrikseipp committed Sep 4, 2023
1 parent bcee437 commit 889c13d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def test_portfolio_configs():
for portfolio in PORTFOLIOS.values():
configs = _get_portfolio_configs(Path(portfolio))
all_configs |= set(tuple(_convert_to_standalone_config(config)) for config in configs)
for config in set(all_configs):
for config in all_configs:
run_driver(["output.sas"] + list(config))


Expand Down

0 comments on commit 889c13d

Please sign in to comment.