Skip to content

Commit

Permalink
Fix double quoted strings
Browse files Browse the repository at this point in the history
  • Loading branch information
spous-ovl committed Aug 14, 2024
1 parent 38da474 commit 02cfed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_extension_sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_sentry_sdk_installed(mocker):
"""
Check that the scope.set_tag method is called when Sentry is installed.
"""
if sentry_sdk.VERSION >= "2.12.0":
if sentry_sdk.VERSION >= '2.12.0':
set_tag_mock = Mock()
scope_mock = Mock()
scope_mock.set_tag = set_tag_mock
Expand Down

0 comments on commit 02cfed4

Please sign in to comment.