From ad3e8de25b33afb99de32da541447e0ca6c310a1 Mon Sep 17 00:00:00 2001 From: amtoine Date: Sat, 1 Apr 2023 09:10:56 +0200 Subject: [PATCH] make the `clip` tests silent --- crates/nu-utils/standard_library/test_std.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-utils/standard_library/test_std.nu b/crates/nu-utils/standard_library/test_std.nu index f6c219f249..ec7d1761f6 100644 --- a/crates/nu-utils/standard_library/test_std.nu +++ b/crates/nu-utils/standard_library/test_std.nu @@ -26,11 +26,11 @@ export def test_path_add [] { export def test_clip_simple_string [] { use std.nu clip - "foo" | clip + "foo" | clip --silent --no-notify } export def test_clip_structured_data [] { use std.nu clip - open Cargo.toml | get package | clip + open Cargo.toml | get package | clip --silent --no-notify }