Skip to content

Commit bb9003c

Browse files
committed
fix: Fix django tests
1 parent 5ae51f8 commit bb9003c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integrations/django/test_basic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def test_template_exception(sentry_init, client, capture_events):
298298
assert status.lower() == "500 internal server error"
299299

300300
event, = events
301-
exception, = event["exception"]["values"]
301+
exception = event["exception"]["values"][0]
302302

303303
frames = [
304304
f

0 commit comments

Comments
 (0)