mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-31 18:38:48 +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
|
||||
@pytest.fixture()
|
||||
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
|
||||
|
||||
def test_three_values(self, three_values: Tuple[V, V, V]) -> None:
|
||||
@@ -170,7 +170,7 @@ class BaseStoreAsyncTests(BaseStandardTests):
|
||||
@abstractmethod
|
||||
@pytest.fixture()
|
||||
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
|
||||
|
||||
async def test_three_values(self, three_values: Tuple[V, V, V]) -> None:
|
||||
|
Reference in New Issue
Block a user