Skip to content

Commit

Permalink
Correct for test with output that was slightly different
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanFauble committed Dec 17, 2024
1 parent c51d732 commit 1ef88e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1ef88e6

Please sign in to comment.