Skip to content

Commit dfa9225

Browse files
committed
Add assertions
1 parent fc33085 commit dfa9225

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_scope.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ def test_scope_flags_copy():
5757

5858
# New scope has the change. Old scope was not polluted by changes
5959
# to the new scope.
60-
old_scope.flags.get() == [
60+
assert old_scope.flags.get() == [
6161
{"flag": "a", "result": True},
6262
{"flag": "b", "result": True},
6363
]
64-
new_scope.flags.get() == [{"flag": "a", "result": False}]
64+
assert new_scope.flags.get() == [{"flag": "a", "result": False}]
6565

6666

6767
def test_merging(sentry_init, capture_events):

0 commit comments

Comments
 (0)