mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
Merge pull request #40626 from BerriAI/litellm_fix_marketplace_test_request
test(proxy): pass the request to get_marketplace in the archive marketplace test
This commit is contained in:
commit
4866be56b0
1 changed files with 1 additions and 1 deletions
|
|
@ -481,7 +481,7 @@ async def test_archive_source_registers_and_is_served_verbatim_in_marketplace():
|
|||
assert response.action == "created"
|
||||
assert response.plugin.source == _ARCHIVE_SOURCE
|
||||
|
||||
marketplace = json.loads((await get_marketplace()).body)
|
||||
marketplace = json.loads((await get_marketplace(request=MagicMock())).body)
|
||||
assert marketplace["plugins"] == [{"name": "s3-skill", "source": _ARCHIVE_SOURCE, "version": "1.0.0"}]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue