Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshew committed Jan 3, 2025
1 parent 38e3eaa commit aa08d93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/task_graph/visitor/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/task_graph/visitor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit aa08d93

Please sign in to comment.