Skip to content

Commit

Permalink
fmt whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
asg017 committed Jul 3, 2024
1 parent 3d7f53a commit 7be4a9b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_table_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,9 @@ async def test_format_of_binary_links(size, title, length_bytes):
expected = "{}>&lt;Binary:&nbsp;{}&nbsp;bytes&gt;</a>".format(title, length_bytes)
assert expected in response.text
# And test with arbitrary SQL query too
sql_response = await ds.client.get("{}/-/query".format(db_name), params={"sql": sql})
sql_response = await ds.client.get(
"{}/-/query".format(db_name), params={"sql": sql}
)
assert sql_response.status_code == 200
assert expected in sql_response.text

Expand Down

0 comments on commit 7be4a9b

Please sign in to comment.