From 1fc7ab6c33ae03aaa9d6fe656e5d74ea55c62254 Mon Sep 17 00:00:00 2001 From: akrm Date: Mon, 20 Apr 2026 16:50:42 -0400 Subject: [PATCH] test(dist/manifest): use the reordered fixture in `manifest_serialized_with_sorted_keys` --- src/dist/manifest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dist/manifest.rs b/src/dist/manifest.rs index 36842a30c0..545d0b68b9 100644 --- a/src/dist/manifest.rs +++ b/src/dist/manifest.rs @@ -656,7 +656,7 @@ mod tests { static EXAMPLE: &str = include_str!("manifest/tests/channel-rust-nightly-example.toml"); // Same manifest as above, but with the packages in a different order. static EXAMPLE_REORDERED: &str = - include_str!("manifest/tests/channel-rust-nightly-example.toml"); + include_str!("manifest/tests/channel-rust-nightly-example-reordered.toml"); // From brson's live build-rust-manifest.py script static EXAMPLE2: &str = include_str!("manifest/tests/channel-rust-nightly-example2.toml");