From dea50f67d15505da1c257bc8fdabf27582ed8580 Mon Sep 17 00:00:00 2001 From: asonnenschein Date: Wed, 1 Oct 2025 16:50:02 -0400 Subject: [PATCH] dont assert test on newline chars --- tests/integration/test_orders_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_orders_cli.py b/tests/integration/test_orders_cli.py index 8f0a663d..e6920a4e 100644 --- a/tests/integration/test_orders_cli.py +++ b/tests/integration/test_orders_cli.py @@ -263,7 +263,7 @@ def test_cli_orders_wait_default(invoke, order_description, oid): runner = CliRunner() result = invoke(['wait', '--delay', '0', oid], runner=runner) assert result.exit_code == 0 - assert result.output.endswith('success\n') + assert 'state: success' in result.output @respx.mock