We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc33085 commit dfa9225Copy full SHA for dfa9225
tests/test_scope.py
@@ -57,11 +57,11 @@ def test_scope_flags_copy():
57
58
# New scope has the change. Old scope was not polluted by changes
59
# to the new scope.
60
- old_scope.flags.get() == [
+ assert old_scope.flags.get() == [
61
{"flag": "a", "result": True},
62
{"flag": "b", "result": True},
63
]
64
- new_scope.flags.get() == [{"flag": "a", "result": False}]
+ assert new_scope.flags.get() == [{"flag": "a", "result": False}]
65
66
67
def test_merging(sentry_init, capture_events):
0 commit comments