mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-04 04:28:58 +00:00
fix: correct typo in docstring for three_values fixture (#31638)
Docstring typo fix in `base_store.py`
This commit is contained in:
@@ -39,7 +39,7 @@ class BaseStoreSyncTests(BaseStandardTests, Generic[V]):
|
|||||||
@abstractmethod
|
@abstractmethod
|
||||||
@pytest.fixture()
|
@pytest.fixture()
|
||||||
def three_values(self) -> Tuple[V, V, V]:
|
def three_values(self) -> Tuple[V, V, V]:
|
||||||
"""Thee example values that will be used in the tests."""
|
"""Three example values that will be used in the tests."""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def test_three_values(self, three_values: Tuple[V, V, V]) -> None:
|
def test_three_values(self, three_values: Tuple[V, V, V]) -> None:
|
||||||
@@ -170,7 +170,7 @@ class BaseStoreAsyncTests(BaseStandardTests):
|
|||||||
@abstractmethod
|
@abstractmethod
|
||||||
@pytest.fixture()
|
@pytest.fixture()
|
||||||
def three_values(self) -> Tuple[V, V, V]:
|
def three_values(self) -> Tuple[V, V, V]:
|
||||||
"""Thee example values that will be used in the tests."""
|
"""Three example values that will be used in the tests."""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
async def test_three_values(self, three_values: Tuple[V, V, V]) -> None:
|
async def test_three_values(self, three_values: Tuple[V, V, V]) -> None:
|
||||||
|
Reference in New Issue
Block a user