Skip to content

Commit

Permalink
reformat according to black
Browse files Browse the repository at this point in the history
  • Loading branch information
gelu authored and gelu committed Jul 10, 2023
1 parent eb3bf16 commit 8b1c138
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions integration/test_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ def test_add_object_batch_with_tenant():
tenant=objects[1][2],
)

retObj = client.data_object.get_by_id(objects[0][0], class_name=objects[0][1], tenant=objects[0][2])
retObj = client.data_object.get_by_id(
objects[0][0], class_name=objects[0][1], tenant=objects[0][2]
)
assert retObj["properties"]["tenantAsProp"] == objects[0][2]

# test batch delete with correct tenant id
Expand All @@ -177,7 +179,9 @@ def test_add_object_batch_with_tenant():
tenant=objects[0][2],
)

retObj = client.data_object.get_by_id(objects[0][0], class_name=objects[0][1], tenant=objects[0][2])
retObj = client.data_object.get_by_id(
objects[0][0], class_name=objects[0][1], tenant=objects[0][2]
)
assert retObj is None

for name in class_names:
Expand Down

0 comments on commit 8b1c138

Please sign in to comment.