From ce71ea0b5c2485db1703d1683741d9ea06d21495 Mon Sep 17 00:00:00 2001 From: Antoine Stevan <44101798+amtoine@users.noreply.github.com> Date: Sat, 10 Jun 2023 00:14:18 +0200 Subject: [PATCH] fix a typo (#9393) related to - https://github.com/nushell/nushell/commit/bdb09a9a00cf559a036073ef306aefa04787ac1b - [this job](https://github.com/nushell/nushell/actions/runs/5224369668/jobs/9432486180?pr=9392) from #9392 - [this job](https://github.com/nushell/nushell/actions/runs/5222835000/jobs/9428854834?pr=9391) from #9391 # Description this PR tries to fix the typo reported in these very recent PRs --- src/tests/test_engine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/test_engine.rs b/src/tests/test_engine.rs index 0ba5d9f670..b510e65262 100644 --- a/src/tests/test_engine.rs +++ b/src/tests/test_engine.rs @@ -387,7 +387,7 @@ fn in_iteration() -> TestResult { } #[test] -fn reuseable_in() -> TestResult { +fn reusable_in() -> TestResult { run_test( r#"[1, 2, 3, 4] | take (($in | length) - 1) | math sum"#, "6",