From 3f313da4c3a84733472ccb154bb67baf979e7b08 Mon Sep 17 00:00:00 2001 From: Luccas Mateus de Medeiros Gomes Date: Mon, 25 Oct 2021 08:10:17 -0300 Subject: [PATCH] Fix test --- crates/nu-command/src/math/abs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/math/abs.rs b/crates/nu-command/src/math/abs.rs index 817e43041..e4d201421 100644 --- a/crates/nu-command/src/math/abs.rs +++ b/crates/nu-command/src/math/abs.rs @@ -42,7 +42,7 @@ impl Command for SubCommand { fn examples(&self) -> Vec { vec![Example { description: "Get absolute of each value in a list of numbers", - example: "echo [-50 -100.0 25] | math abs", + example: "[-50 -100.0 25] | math abs", result: Some(Value::List { vals: vec![ Value::test_int(50),