From 088561f6feba2f71daddb635f9e11479951196fa Mon Sep 17 00:00:00 2001 From: Sam Hedin Date: Sat, 28 Mar 2020 19:46:10 +0100 Subject: [PATCH] Lint test cases in headers --- crates/nu-cli/tests/commands/headers.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/nu-cli/tests/commands/headers.rs b/crates/nu-cli/tests/commands/headers.rs index bc566ea4e6..be5ffb5c7f 100644 --- a/crates/nu-cli/tests/commands/headers.rs +++ b/crates/nu-cli/tests/commands/headers.rs @@ -3,14 +3,14 @@ use nu_test_support::{nu, pipeline}; #[test] fn headers_uses_first_row_as_header() { let actual = nu!( - cwd: "tests/fixtures/formats", pipeline( - r#" + cwd: "tests/fixtures/formats", pipeline( + r#" open sample_headers.xlsx | get Sheet1 | headers | get header0 | from-json"# - )); + )); assert_eq!(actual, "r1c0r2c0") }