From c3ca5cda13985ef4a21035cb4dcdfe6d1f3e27fa Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 18 May 2026 00:53:12 +0000 Subject: [PATCH] style(package-manifest): drop trailing comma in single-line `assert!` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dylint's perfectionist::macro-trailing-comma rule rejected the single- line `assert!` formatting I'd accidentally inherited from the multi- line shape — remove the trailing comma so the lint clears. https://claude.ai/code/session_01D8WBTfQzTpsZsRknrzwNKL --- pacquet/crates/package-manifest/src/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pacquet/crates/package-manifest/src/tests.rs b/pacquet/crates/package-manifest/src/tests.rs index d17d43e505..0d1471408b 100644 --- a/pacquet/crates/package-manifest/src/tests.rs +++ b/pacquet/crates/package-manifest/src/tests.rs @@ -419,7 +419,7 @@ fn safe_read_surfaces_non_not_found_io_errors() { let err = safe_read_package_json_from_dir(dir.path()) .expect_err("read_to_string on a directory should fail"); - assert!(matches!(err, PackageManifestError::Io(_)), "expected Io error, got {err:?}",); + assert!(matches!(err, PackageManifestError::Io(_)), "expected Io error, got {err:?}"); } /// `convert_engines_runtime_to_dependencies` ignores `devEngines.runtime`