summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2018-05-15 09:39:06 +0200
committerGitHub <noreply@github.com>2018-05-15 09:39:06 +0200
commit3f9142a2ed8aeef40cb714466a1ff3623602eca6 (patch)
treef1c1848f8a4ab4c0ddd44b1a3aca12bca7e1b9bf /tests
parent595d69558d8a093b72423b07404c25863b1d0f31 (diff)
downloadraven-3f9142a2ed8aeef40cb714466a1ff3623602eca6.tar.gz
feat: switch from culprit to transaction (#1238)
Diffstat (limited to 'tests')
-rw-r--r--tests/contrib/test_celery.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/contrib/test_celery.py b/tests/contrib/test_celery.py
index cfa5b0f..e5f0b91 100644
--- a/tests/contrib/test_celery.py
+++ b/tests/contrib/test_celery.py
@@ -33,7 +33,7 @@ class CeleryTestCase(TestCase):
assert len(self.client.events) == 1
event = self.client.events[0]
exception = event['exception']['values'][-1]
- assert event['culprit'] == 'dummy_task'
+ assert event['transaction'] == 'dummy_task'
assert exception['type'] == 'ZeroDivisionError'
def test_ignore_expected(self):