Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Marinovsky committed Sep 6, 2023
1 parent c01259f commit d2f63c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/commands/cloud/live/test_cloud_live_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ def test_cloud_live_deploy_with_tradier_using_tradier_datafeed() -> None:

result = CliRunner().invoke(lean, ["cloud", "live", "Python Project", "--brokerage", "Tradier", "--node", "live",
"--auto-restart", "yes", "--notify-order-events", "no", "--notify-insights", "no",
"--tradier-data-feed", "Tradier", "--tradier-account-id", "123",
"--tradier-data-feed", "Tradier Brokerage", "--tradier-account-id", "123",
"--tradier-access-token", "456", "--tradier-environment", "paper"])

assert result.exit_code == 0
assert "Data provider: Tradier" in result.output.split("\n")
assert "Data provider: TradierBrokerage" in result.output.split("\n")

@pytest.mark.parametrize("notice_method,configs", [("emails", "customAddress:customSubject"),
("emails", "customAddress1:customSubject1,customAddress2:customSubject2"),
Expand Down

0 comments on commit d2f63c2

Please sign in to comment.