From aa08d9344f6ca8c251002ca0afeccf29230ac55c Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Fri, 3 Jan 2025 14:08:25 -0700 Subject: [PATCH] WIP --- crates/turborepo-lib/src/task_graph/visitor/command.rs | 2 +- crates/turborepo-lib/src/task_graph/visitor/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/turborepo-lib/src/task_graph/visitor/command.rs b/crates/turborepo-lib/src/task_graph/visitor/command.rs index e966e8897ce08..335f7040fe90b 100644 --- a/crates/turborepo-lib/src/task_graph/visitor/command.rs +++ b/crates/turborepo-lib/src/task_graph/visitor/command.rs @@ -306,7 +306,7 @@ mod test { let cmd = factory .command(&task_id, EnvironmentVariableMap::default()) .unwrap_err(); - assert_snapshot!(cmd.to_string(), @"Internal errors encountered: oops!"); + assert_snapshot!(cmd.to_string(), @"internal errors encountered: oops!"); } #[test] diff --git a/crates/turborepo-lib/src/task_graph/visitor/mod.rs b/crates/turborepo-lib/src/task_graph/visitor/mod.rs index 3f45ec7aae195..2797d693d3de6 100644 --- a/crates/turborepo-lib/src/task_graph/visitor/mod.rs +++ b/crates/turborepo-lib/src/task_graph/visitor/mod.rs @@ -105,7 +105,7 @@ pub enum Error { TaskHash(#[from] task_hash::Error), #[error(transparent)] RunSummary(#[from] summary::Error), - #[error("Internal errors encountered: {0}")] + #[error("internal errors encountered: {0}")] InternalErrors(String), #[error("unable to find package manager binary: {0}")] Which(#[from] which::Error),