i18n-scan: fix the test now that we don't pre-fill the translations values anymore

This commit is contained in:
Quentin Gliech
2023-10-05 17:54:04 +02:00
parent 266a8e53ff
commit 11a8c4d6b3

View File

@@ -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": "",
},
})
);