Skip to content

Commit dc6d720

Browse files
committed
fix
1 parent 894391e commit dc6d720

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_attributes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ def test_top_level_api(sentry_init, capture_envelopes):
1010

1111
sentry_sdk.set_attribute("set", "value")
1212
sentry_sdk.set_attribute("remove", "value")
13-
sentry_sdk.remove_attribute("removed", "value")
13+
sentry_sdk.remove_attribute("removed")
1414
# Attempting to remove a nonexistent attribute should not raise
15-
sentry_sdk.remove_attribute("nonexistent", "value")
15+
sentry_sdk.remove_attribute("nonexistent")
1616

1717
sentry_sdk.metrics.count("test", 1)
1818
sentry_sdk.get_client().flush()

0 commit comments

Comments
 (0)