From dd646fc24a1b1bb415366877245e44694803d7c7 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Thu, 5 Oct 2023 17:54:04 +0200 Subject: [PATCH] i18n-scan: fix the test now that we don't pre-fill the translations values anymore --- crates/i18n-scan/src/minijinja.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/crates/i18n-scan/src/minijinja.rs b/crates/i18n-scan/src/minijinja.rs index 0ea8a6cb..cbae41e4 100644 --- a/crates/i18n-scan/src/minijinja.rs +++ b/crates/i18n-scan/src/minijinja.rs @@ -303,17 +303,17 @@ mod tests { tree, serde_json::json!({ "hello": "Hello!", - "world": "world", + "world": "", "plural": { - "other": "%(count)d plural" + "other": "" }, "nested": { - "1": "nested.1", - "2": "nested.2", - "3": "nested.3", - "4": "nested.4", - "5": "nested.5", - "6": "nested.6", + "1": "", + "2": "", + "3": "", + "4": "", + "5": "", + "6": "", }, }) );