Skip to content

Commit b95bb90

Browse files
authored
fix(langchain-sdk): Correct test name to ensure execution and full coverage. (#145)
1 parent 2fb35cd commit b95bb90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ async def test_load_manifest(self, mock_get, mock_manifest):
8383

8484
@pytest.mark.asyncio
8585
@patch("aiohttp.ClientSession.get")
86-
async def test_load_manifest_invalid_manifest(self, mock_get, mock_manifest):
86+
async def test_load_manifest_invalid_json(self, mock_get, mock_manifest):
8787
mock_manifest.raise_for_status = Mock()
8888
mock_manifest.text = AsyncMock(return_value="{ invalid manifest")
8989
mock_get.return_value = mock_manifest

0 commit comments

Comments
 (0)