From a79998800c2f0dc17347fcaee4dab77681235490 Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Tue, 17 Jun 2025 13:51:07 -0700 Subject: [PATCH] fix: correct typo in docstring for three_values fixture (#31638) Docstring typo fix in `base_store.py` --- .../langchain_tests/integration_tests/base_store.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/standard-tests/langchain_tests/integration_tests/base_store.py b/libs/standard-tests/langchain_tests/integration_tests/base_store.py index 627eb13ef54..b849fb466c4 100644 --- a/libs/standard-tests/langchain_tests/integration_tests/base_store.py +++ b/libs/standard-tests/langchain_tests/integration_tests/base_store.py @@ -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: