Skip to content

Commit

Permalink
Format with black==24.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethho committed Sep 17, 2024
1 parent 7b11db2 commit 07244c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ def validate(table, inserted_value, expected_type, expected_value, client, token
headers=dict(Authorization=f"Bearer {token}"),
)
assert resp.status_code == 200, f"Failed to get records: {resp.text=}"
assert resp.json is not None, f"resp.json is None: {resp=} {dir(resp)=} {resp.text=}"
assert (
resp.json is not None
), f"resp.json is None: {resp=} {dir(resp)=} {resp.text=}"
assert "records" in resp.json, f"No records in response: {resp.json=}"
REST_records = resp.json["records"]
assert len(REST_records) == 1
Expand Down

0 comments on commit 07244c3

Please sign in to comment.