mirror of
https://github.com/nushell/nushell
synced 2025-01-28 12:55:40 +00:00
fix zip test (#5536)
This commit is contained in:
parent
c047fd4778
commit
44bcfb3403
1 changed files with 1 additions and 3 deletions
|
@ -8,14 +8,12 @@ def expect [
|
||||||
--to-eq,
|
--to-eq,
|
||||||
right
|
right
|
||||||
] {
|
] {
|
||||||
$left | zip { $right } | all? {|row|
|
$left | zip $right | all? {|row|
|
||||||
$row.name.0 == $row.name.1 && $row.commits.0 == $row.commits.1
|
$row.name.0 == $row.name.1 && $row.commits.0 == $row.commits.1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"#;
|
"#;
|
||||||
|
|
||||||
// FIXME: jt: needs more work
|
|
||||||
#[ignore]
|
|
||||||
#[test]
|
#[test]
|
||||||
fn zips_two_tables() {
|
fn zips_two_tables() {
|
||||||
Playground::setup("zip_test_1", |dirs, nu| {
|
Playground::setup("zip_test_1", |dirs, nu| {
|
||||||
|
|
Loading…
Reference in a new issue