@@ -2810,11 +2810,17 @@ async def test_set_usage_data_with_cache_tokens(sentry_init, capture_events):
|
2810 | 2810 | "https://example.com/image.png", |
2811 | 2811 | id="http_url_no_redaction", |
2812 | 2812 | ), |
| 2813 | + pytest.param( |
| 2814 | + "https://example.com/api?data=iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs", |
| 2815 | + {}, |
| 2816 | + "https://example.com/api?data=iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs", |
| 2817 | + id="http_url_with_base64_query_param_no_media_type", |
| 2818 | + ), |
2813 | 2819 | pytest.param( |
2814 | 2820 | "https://example.com/api?data=iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs", |
2815 | 2821 | {"media_type": "image/png"}, |
2816 | 2822 | "https://example.com/api?data=iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs", |
2817 | | - id="http_url_with_base64_query_param", |
| 2823 | + id="http_url_with_base64_query_param_with_media_type", |
2818 | 2824 | ), |
2819 | 2825 | pytest.param( |
2820 | 2826 | "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciLz4=", |
|