From 57e3d1246aa524b6166467d51f6cbc3412bbed7d Mon Sep 17 00:00:00 2001 From: WindSoilder Date: Tue, 9 Jul 2024 09:03:21 +0800 Subject: [PATCH] adjust test --- tests/shell/pipeline/commands/internal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/shell/pipeline/commands/internal.rs b/tests/shell/pipeline/commands/internal.rs index 16b69222fe..59c9f31fce 100644 --- a/tests/shell/pipeline/commands/internal.rs +++ b/tests/shell/pipeline/commands/internal.rs @@ -1167,5 +1167,5 @@ fn error_on_out_greater_pipe() { let actual = nu!(r#""foo" o>| print"#); assert!(actual .err - .contains("Redirection stdout to pipe is the same as piping directly")) + .contains("Redirecting stdout to a pipe is the same as normal piping")) }