···8585 'capture_exception reports success for a 200 response',
8686);
8787is(scalar @requests, 1, 'capture_exception submits one store request');
8888-is($requests[0]{url}, 'http://127.0.0.1:9999/api/42/store/?sentry_key=public&sentry_secret=secret&sentry_version=7', 'dsn is converted into the expected store URL');
8888+is($requests[0]{url}, 'http://127.0.0.1:9999/api/42/store/', 'dsn is converted into the expected store URL');
8989like($requests[0]{headers}{'X-Sentry-Auth'}, qr/sentry_key=public/, 'sentry auth header includes the public key');
9090is($requests[0]{payload}{tags}{nsid}, 'com.atproto.server.describeServer', 'payload includes the nsid tag');
9191is($requests[0]{payload}{exception}{values}[0]{type}, 'UnhandledXRPCException', 'payload includes exception type');