Skip to content

Commit 6256765

Browse files
committed
updated test
1 parent 2b1de90 commit 6256765

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integrations/launchdarkly/test_launchdarkly.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ def task(flag_key):
8585
client.variation(flag_key, context, False)
8686
# use a tag to identify to identify events later on
8787
sentry_sdk.set_tag("task_id", flag_key)
88-
sentry_sdk.capture_exception(Exception("something wrong!"))
88+
sentry_sdk.capture_exception(
89+
Exception(f"something wrong with task {flag_key}!")
90+
)
8991

9092
# Capture an eval before we split isolation scopes.
9193
client.variation("hello", context, False)

0 commit comments

Comments
 (0)