@@ -177,7 +177,7 @@ def test_db_transaction_spans_disabled_atomic(sentry_init, client, capture_event
177177@pytest_mark_django_db_decorator (transaction = True )
178178def test_db_no_autocommit_execute (sentry_init , client , capture_events ):
179179 sentry_init (
180- integrations = [DjangoIntegration (database_transaction_spans = True )],
180+ integrations = [DjangoIntegration (db_transaction_spans = True )],
181181 traces_sample_rate = 1.0 ,
182182 )
183183
@@ -235,7 +235,7 @@ def test_db_no_autocommit_execute(sentry_init, client, capture_events):
235235@pytest_mark_django_db_decorator (transaction = True )
236236def test_db_no_autocommit_executemany (sentry_init , client , capture_events ):
237237 sentry_init (
238- integrations = [DjangoIntegration (database_transaction_spans = True )],
238+ integrations = [DjangoIntegration (db_transaction_spans = True )],
239239 traces_sample_rate = 1.0 ,
240240 )
241241
@@ -319,7 +319,7 @@ def test_db_no_autocommit_executemany(sentry_init, client, capture_events):
319319@pytest_mark_django_db_decorator (transaction = True )
320320def test_db_atomic_execute (sentry_init , client , capture_events ):
321321 sentry_init (
322- integrations = [DjangoIntegration (database_transaction_spans = True )],
322+ integrations = [DjangoIntegration (db_transaction_spans = True )],
323323 traces_sample_rate = 1.0 ,
324324 )
325325
@@ -377,7 +377,7 @@ def test_db_atomic_execute(sentry_init, client, capture_events):
377377@pytest_mark_django_db_decorator (transaction = True )
378378def test_db_atomic_executemany (sentry_init , client , capture_events ):
379379 sentry_init (
380- integrations = [DjangoIntegration (database_transaction_spans = True )],
380+ integrations = [DjangoIntegration (db_transaction_spans = True )],
381381 send_default_pii = True ,
382382 traces_sample_rate = 1.0 ,
383383 )
0 commit comments