Skip to content

Commit

Permalink
ran black tests on meilisearch
Browse files Browse the repository at this point in the history
  • Loading branch information
pbelokon committed Nov 24, 2023
1 parent ae2b052 commit 057e27a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/client/test_clinet_snapshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
def test_snapshot_creation(client, index_with_documents):
"""Tests the creation of a Meilisearch snapshot."""
index_with_documents("indexUID-snapshot-creation")
snapshot= client.create_snapshot()
snapshot = client.create_snapshot()
client.wait_for_task(snapshot.task_uid)
snapshot_status = client.get_task(snapshot.task_uid)
assert snapshot_status.status == "succeeded"
assert snapshot_status.type == "snapshotCreation"
assert snapshot_status.type == "snapshotCreation"

0 comments on commit 057e27a

Please sign in to comment.