Skip to content

Commit

Permalink
bug: fix check for installed index
Browse files Browse the repository at this point in the history
  • Loading branch information
fedorov committed Jul 26, 2024
1 parent c52a2a1 commit 0c7d405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/idcindex.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,9 +467,9 @@ def test_list_indices(self):

def test_fetch_index(self):
i = IDCClient()
assert i.indices_overview["sm_index", "installed"] is False
assert i.indices_overview["sm_index"]["installed"] is False
i.fetch_index("sm_index")
assert i.indices_overview["sm_index", "installed"] is True
assert i.indices_overview["sm_index"]["installed"] is True


if __name__ == "__main__":
Expand Down

0 comments on commit 0c7d405

Please sign in to comment.