8000 fix: Fix pyramid tests · tb-lib/sentry-python@3ac9097 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3ac9097

Browse files
committed
fix: Fix pyramid tests
1 parent d0dd3bc commit 3ac9097

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integrations/pyramid/test_pyramid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def error_handler(err, request):
240240
exception, = event1["exception"]["values"]
241241
assert exception["type"] == "ValueError"
242242

243-
exception, = event2["exception"]["values"]
243+
exception = event2["exception"]["values"][0]
244244
assert exception["type"] == "ZeroDivisionError"
245245

246246

0 commit comments

Comments
 (0)
0