summaryrefslogtreecommitdiffstats
path: root/third_party/rust/glean/tests/never_init.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/glean/tests/never_init.rs')
-rw-r--r--third_party/rust/glean/tests/never_init.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/third_party/rust/glean/tests/never_init.rs b/third_party/rust/glean/tests/never_init.rs
index 0d0d3768ff..a991ce467e 100644
--- a/third_party/rust/glean/tests/never_init.rs
+++ b/third_party/rust/glean/tests/never_init.rs
@@ -38,8 +38,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![])
+ });
}
/// Test scenario: Glean is never initialized.