Skip to content

Commit

Permalink
don't use deprecated class name
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurme committed Dec 17, 2024
1 parent 2e9b86a commit c714fc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/partners/pinecone/tests/unit_tests/test_vectorstores.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from unittest.mock import Mock

from langchain_pinecone.vectorstores import Pinecone, PineconeVectorStore
from langchain_pinecone.vectorstores import PineconeVectorStore


def test_initialization() -> None:
Expand All @@ -9,7 +9,7 @@ def test_initialization() -> None:
index = Mock()
embedding = Mock()
text_key = "xyz"
Pinecone(index, embedding, text_key)
PineconeVectorStore(index, embedding, text_key)


def test_id_prefix() -> None:
Expand Down

0 comments on commit c714fc7

Please sign in to comment.