fix zip test (#5536)

This commit is contained in:
WindSoilder 2022-05-16 05:44:32 +08:00 committed by GitHub
parent c047fd4778
commit 44bcfb3403
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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| {