From 44bcfb34035a3208a11fb32c942d116ef8824847 Mon Sep 17 00:00:00 2001 From: WindSoilder Date: Mon, 16 May 2022 05:44:32 +0800 Subject: [PATCH] fix zip test (#5536) --- crates/nu-command/tests/commands/zip.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/nu-command/tests/commands/zip.rs b/crates/nu-command/tests/commands/zip.rs index f3d99f779..69b48e477 100644 --- a/crates/nu-command/tests/commands/zip.rs +++ b/crates/nu-command/tests/commands/zip.rs @@ -8,14 +8,12 @@ def expect [ --to-eq, right ] { - $left | zip { $right } | all? {|row| + $left | zip $right | all? {|row| $row.name.0 == $row.name.1 && $row.commits.0 == $row.commits.1 } } "#; -// FIXME: jt: needs more work -#[ignore] #[test] fn zips_two_tables() { Playground::setup("zip_test_1", |dirs, nu| {