mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
Remove group
command (#14056)
# Description Removes the `group` command that was deprecated back in 0.96.0 with #13377. # User-Facing Changes Breaking change, removed `group` command.
This commit is contained in:
@ -9,7 +9,7 @@ fn each_works_separately() {
|
||||
|
||||
#[test]
|
||||
fn each_group_works() {
|
||||
let actual = nu!("echo [1 2 3 4 5 6] | group 3 | to json --raw");
|
||||
let actual = nu!("echo [1 2 3 4 5 6] | chunks 3 | to json --raw");
|
||||
|
||||
assert_eq!(actual.out, "[[1,2,3],[4,5,6]]");
|
||||
}
|
||||
|
Reference in New Issue
Block a user