about summary refs log tree commit diff
path: root/compiler/rustc_errors/src/json
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-06-28 07:40:14 +0000
committerGitHub <noreply@github.com>2025-06-28 07:40:14 +0000
commit96a70e2e917a2e8e1dc028fcaeacba5b420d8e71 (patch)
treead46d6add78b59ba3d90ffab57c876d237e4ace0 /compiler/rustc_errors/src/json
parent03901977c9b88132a478b4dba6ebb8a795140082 (diff)
parent35e6def4879ff3b30862d827665ce9da052ed730 (diff)
downloadrust-96a70e2e917a2e8e1dc028fcaeacba5b420d8e71.tar.gz
rust-96a70e2e917a2e8e1dc028fcaeacba5b420d8e71.zip
Merge pull request #4417 from rust-lang/rustup-2025-06-28
Automatic Rustup
Diffstat (limited to 'compiler/rustc_errors/src/json')
-rw-r--r--compiler/rustc_errors/src/json/tests.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_errors/src/json/tests.rs b/compiler/rustc_errors/src/json/tests.rs
index 40973e8e5d8..8cf81f467d8 100644
--- a/compiler/rustc_errors/src/json/tests.rs
+++ b/compiler/rustc_errors/src/json/tests.rs
@@ -41,14 +41,14 @@ fn test_positions(code: &str, span: (u32, u32), expected_output: SpanTestData) {
     rustc_span::create_default_session_globals_then(|| {
         let sm = Arc::new(SourceMap::new(FilePathMapping::empty()));
         sm.new_source_file(Path::new("test.rs").to_owned().into(), code.to_owned());
-        let fallback_bundle =
-            crate::fallback_fluent_bundle(vec![crate::DEFAULT_LOCALE_RESOURCE], false);
+        let translator =
+            Translator::with_fallback_bundle(vec![crate::DEFAULT_LOCALE_RESOURCE], false);
 
         let output = Arc::new(Mutex::new(Vec::new()));
         let je = JsonEmitter::new(
             Box::new(Shared { data: output.clone() }),
             Some(sm),
-            fallback_bundle,
+            translator,
             true, // pretty
             HumanReadableErrorType::Short,
             ColorConfig::Never,