From d7ce35234f9fd8554a3c480057c87c3ad0f18fd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Maita?= <47983254+mnmaita@users.noreply.github.com> Date: Mon, 30 Jun 2025 20:19:46 +0200 Subject: [PATCH] Update ui_test requirement from 0.29.1 to 0.30.1 (#19799) # Objective - Fixes #19670 ## Solution - Updated breaking code to be able to upgrade `ui_test` to the latest version. ## Testing - CI checks. --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- tools/compile_fail_utils/Cargo.toml | 2 +- tools/compile_fail_utils/src/lib.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/compile_fail_utils/Cargo.toml b/tools/compile_fail_utils/Cargo.toml index 453b7ea7ad..8668fdaa9e 100644 --- a/tools/compile_fail_utils/Cargo.toml +++ b/tools/compile_fail_utils/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" publish = false [dependencies] -ui_test = "0.29.1" +ui_test = "0.30.1" [[test]] name = "example" diff --git a/tools/compile_fail_utils/src/lib.rs b/tools/compile_fail_utils/src/lib.rs index ecd4f34c68..28157400a7 100644 --- a/tools/compile_fail_utils/src/lib.rs +++ b/tools/compile_fail_utils/src/lib.rs @@ -123,7 +123,8 @@ pub fn test_with_multiple_configs( let emitter: Box = if env::var_os("CI").is_some() { Box::new(( Text::verbose(), - Gha:: { + Gha { + group: true, name: test_name.into(), }, ))