Skip to content

Commit

Permalink
- Fix Minor Test Cases.
Browse files Browse the repository at this point in the history
  • Loading branch information
sounakr committed Sep 5, 2023
1 parent 1d8cfa8 commit 9fcf4a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deeplake/api/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ def test_htype(memory_ds: Dataset):
# Along the first direcection three matrices are concatenated, the first matrix is P,
# the second one is Tr and the third one is R
intrinsics.append(np.zeros((3, 4, 4), dtype=np.float32))
embedding.append(np.random.rand((100)))
embedding.append(np.random.rand((100)).astype("float32"))


def test_dtype(memory_ds: Dataset):
Expand Down
1 change: 1 addition & 0 deletions deeplake/core/vectorstore/test_deeplake_vectorstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,7 @@ def test_search_managed(hub_cloud_dev_token):
assert data_ce["id"] == data_db["id"]


@requires_libdeeplake
def test_delete(local_path, hub_cloud_dev_token):
# initialize vector store object:
vector_store = DeepLakeVectorStore(
Expand Down

0 comments on commit 9fcf4a2

Please sign in to comment.