File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,9 @@ def test_custom_certificate_authorities():
180
180
.public_key (ca_key .public_key ())
181
181
.serial_number (x509 .random_serial_number ())
182
182
.not_valid_before (datetime .datetime .now (datetime .timezone .utc ))
183
- .not_valid_after (datetime .datetime .now (datetime .timezone .utc ) + datetime .timedelta (days = 1 ))
183
+ .not_valid_after (
184
+ datetime .datetime .now (datetime .timezone .utc ) + datetime .timedelta (days = 1 )
185
+ )
184
186
.add_extension (x509 .BasicConstraints (ca = True , path_length = None ), critical = True )
185
187
.add_extension (
186
188
x509 .KeyUsage (
@@ -398,7 +400,7 @@ def placeholder_fn():
398
400
lambda x : len (json .loads (x )["data" ]) > 0 ,
399
401
)
400
402
poll_for_response (
401
- f"{ SENTRY_TEST_HOST } /api/0/organizations/sentry/events/?dataset=spansIndexed &field=id&project=1&statsPeriod=1h" ,
403
+ f"{ SENTRY_TEST_HOST } /api/0/organizations/sentry/events/?dataset=spans &field=id&project=1&statsPeriod=1h" ,
402
404
client ,
403
405
lambda x : len (json .loads (x )["data" ]) > 0 ,
404
406
)
You can’t perform that action at this time.
0 commit comments