We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e20037 commit fe38863Copy full SHA for fe38863
sentry/src/routes/units_for_slot_test.rs
@@ -238,13 +238,14 @@ async fn test_targeting_input() {
238
)]
239
.into_iter()
240
.collect();
241
-
+
242
let _mock_guard = Mock::given(method("GET"))
243
.and(path(format!("/slot/{}", ad_slot.ipfs)))
244
.respond_with(ResponseTemplate::new(200).set_body_json(platform_response))
245
.expect(1)
246
.named("platform_slot")
247
- .mount(&mock_server).await;
+ .mount(&mock_server)
248
+ .await;
249
250
let response = get_units_for_slot(
251
Extension(app.clone()),
0 commit comments