From 3a3c6256c6490286f0762f67ac5f5723913b9557 Mon Sep 17 00:00:00 2001 From: alexdewar Date: Mon, 22 Dec 2025 00:21:55 +0000 Subject: [PATCH 1/3] [create-pull-request] automated change --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 1612370a6..9cf77fc11 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.91.0" +channel = "1.92.0" profile = "default" From ad2c81f8436a83784ff0c544df17c085159c2661 Mon Sep 17 00:00:00 2001 From: Alex Dewar Date: Mon, 22 Dec 2025 09:36:16 +0000 Subject: [PATCH 2/3] Rename tests Not sure where the 'smoke' came from... --- src/fixture.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fixture.rs b/src/fixture.rs index 02c42129f..5e3d6316a 100644 --- a/src/fixture.rs +++ b/src/fixture.rs @@ -367,13 +367,13 @@ mod tests { use super::*; #[test] - fn patch_and_validate_simple_smoke() { + fn patch_and_validate_simple_ok() { let patches = Vec::new(); assert!(patch_and_validate_simple!(patches).is_ok()); } #[test] - fn patch_and_run_simple_smoke() { + fn patch_and_run_simple_ok() { let patches = Vec::new(); assert!(patch_and_run_simple!(patches).is_ok()); } From e1b1b642f425791d4c6b3b8004c29f73e9f3fec9 Mon Sep 17 00:00:00 2001 From: Alex Dewar Date: Mon, 22 Dec 2025 09:39:38 +0000 Subject: [PATCH 3/3] fixture.rs: Comment out currently unused exported macros --- src/fixture.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/fixture.rs b/src/fixture.rs index 5e3d6316a..ad9452c63 100644 --- a/src/fixture.rs +++ b/src/fixture.rs @@ -62,7 +62,8 @@ macro_rules! patch_and_validate_simple { })() }}; } -pub(crate) use patch_and_validate_simple; +// Currently unused outside this file +// pub(crate) use patch_and_validate_simple; /// Check whether the simple example runs successfully after applying file patches macro_rules! patch_and_run_simple { @@ -78,7 +79,8 @@ macro_rules! patch_and_run_simple { })() }}; } -pub(crate) use patch_and_run_simple; +// Currently unused outside this file +// pub(crate) use patch_and_run_simple; #[fixture] pub fn region_id() -> RegionID {