From 1ef88e69d2cc0846c03e3927e6e949930d083b37 Mon Sep 17 00:00:00 2001 From: BryanFauble <17128019+BryanFauble@users.noreply.github.com> Date: Tue, 17 Dec 2024 14:02:44 -0700 Subject: [PATCH] Correct for test with output that was slightly different --- tests/integration/synapseclient/test_command_line_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/synapseclient/test_command_line_client.py b/tests/integration/synapseclient/test_command_line_client.py index dd96a6173..b365ae22a 100644 --- a/tests/integration/synapseclient/test_command_line_client.py +++ b/tests/integration/synapseclient/test_command_line_client.py @@ -883,7 +883,7 @@ async def test_table_query(test_state): ) output_rows = output.rstrip("\n").split("\n") - if output_rows[0] and output_rows[0].startswith(f"Downloaded {schema1.id} to"): + if output_rows[0] and output_rows[0].startswith(f"[{schema1.id}]: Downloaded to"): output_rows = output_rows[1:] # Check the length of the output