Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_litellm/test_lazy_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def test_star_import_exports_public_api():
code = (
"from litellm import *\n"
"import litellm\n"
"missing = [n for n in litellm.__all__ if n not in dir()]\n"
"missing = [n for n in litellm.__all__ if n not in globals()]\n"
"assert not missing, missing[:20]\n"
"assert callable(completion) and callable(Router)\n"
)
Expand Down
Loading