Skip to content

Commit 8a2171b

Browse files
committed
passing tests, correct rtrim.csv on csvcleaner test, normalized reference to -use-lazy-quotes
1 parent c7a9cde commit 8a2171b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

how-to/csvcleaner/rtrim.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Number,Value
22
" one"," 1",
3-
two ,2
4-
" three "," 3"," 0"
3+
two,2
4+
" three"," 3"," 0"

test_cmds.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ function test_csvcols() {
407407

408408
# Bug: csvcols has issues with quotations marks #1
409409
if [ -f temp.csv ]; then rm temp.csv; fi
410-
bin/csvcols -use-lazy-quote -i how-to/csvcols/quoting-example.csv -o temp.csv -col 1,2
410+
bin/csvcols -use-lazy-quotes -i how-to/csvcols/quoting-example.csv -o temp.csv -col 1,2
411411
assert_exists "test_csvcols (bug issue #1)" temp.csv
412412
R=$(cmp how-to/csvcols/quoting-expected.csv temp.csv)
413413
assert_empty "test_csvcols (bug issue #1)" "$R"

0 commit comments

Comments
 (0)