Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: fix test_installed_modules #3309

Merged
merged 1 commit into from
Jul 19, 2024
Merged
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
3 changes: 2 additions & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
serialize_frame,
is_sentry_url,
_get_installed_modules,
_generate_installed_modules,
ensure_integration_enabled,
ensure_integration_enabled_async,
)
Expand Down Expand Up @@ -523,7 +524,7 @@ def test_installed_modules():

installed_distributions = {
_normalize_distribution_name(dist): version
for dist, version in _get_installed_modules().items()
for dist, version in _generate_installed_modules()
}

if importlib_available:
Expand Down
Loading