Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
Canx committed Jan 22, 2025
1 parent fdde795 commit 3854ab3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/test_NFIX5.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@ def test_update_signals_from_config(mock_config):

# Verify that the long signals were updated correctly
for signal_name, value in test_config["long_entry_signal_params"].items():
assert strategy.long_entry_signal_params[signal_name] == value, (
f"Mismatch in {signal_name}: expected {value}, got {strategy.long_entry_signal_params[signal_name]}"
)
assert (
strategy.long_entry_signal_params[signal_name] == value
), f"Mismatch in {signal_name}: expected {value}, got {strategy.long_entry_signal_params[signal_name]}"

# Verify that the short signals were updated correctly
for signal_name, value in test_config["short_entry_signal_params"].items():
Expand Down

0 comments on commit 3854ab3

Please sign in to comment.