diff options
Diffstat (limited to 'third_party/rust/glean/tests/upload_timing.rs')
-rw-r--r-- | third_party/rust/glean/tests/upload_timing.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/third_party/rust/glean/tests/upload_timing.rs b/third_party/rust/glean/tests/upload_timing.rs index ba0eee3402..49007cf8dc 100644 --- a/third_party/rust/glean/tests/upload_timing.rs +++ b/third_party/rust/glean/tests/upload_timing.rs @@ -96,8 +96,9 @@ mod pings { use once_cell::sync::Lazy; #[allow(non_upper_case_globals)] - pub static validation: Lazy<PingType> = - Lazy::new(|| glean::private::PingType::new("validation", true, true, true, true, vec![])); + pub static validation: Lazy<PingType> = Lazy::new(|| { + glean::private::PingType::new("validation", true, true, true, true, true, vec![], vec![]) + }); } // Define a fake uploader that sleeps. |