From 830db6f06105389160436e88c852afd86edd0179 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Esteban=20K=C3=BCber?= <esteban@kuber.com.ar>
Date: Thu, 1 Aug 2024 18:10:56 +0000
Subject: [PATCH] Change tests to support `rustc` wording changes

Between rust-lang/rust#126810 and rust-lang/rust#126810 the output of rustc for resolution errors is going to change in such a way that some existing cargo tests will fail. Change them to support both the current and future output, so that those PRs can land in `rustc`.
---
 tests/testsuite/check.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/testsuite/check.rs b/tests/testsuite/check.rs
index d9911ee7400..53a618a8cfa 100644
--- a/tests/testsuite/check.rs
+++ b/tests/testsuite/check.rs
@@ -819,7 +819,7 @@ fn short_message_format() {
         .with_status(101)
         .with_stderr_data(str![[r#"
 [CHECKING] foo v0.0.1 ([ROOT]/foo)
-src/lib.rs:1:27: error[E0308]: mismatched types
+src/lib.rs:1:27: error[E0308]: mismatched types[..]
 [ERROR] could not compile `foo` (lib) due to 1 previous error
 
 "#]])