Revert "Hide 7925" (#8500)

Revert nushell/nushell#8359
Turn `[empty list]` on by default again
This commit is contained in:
Artemiy
2023-03-17 22:58:13 +03:00
committed by GitHub
parent 77e9f8d7df
commit 491a9c019c
3 changed files with 4 additions and 3 deletions

View File

@ -332,8 +332,8 @@ fn remove_ignores_ansi() {
let actual = nu!(
cwd: sandbox.cwd(),
"ls | find test | get name | rm $in.0; ls",
"ls | find test | get name | rm $in.0; ls | is-empty",
);
assert!(actual.out.is_empty());
assert_eq!(actual.out, "true");
});
}