From 89591e5d540afc66414bdcb1eaf5b515af019b03 Mon Sep 17 00:00:00 2001 From: Pavel Rehak Date: Sat, 26 May 2018 16:12:38 +0200 Subject: [PATCH] Correction t0001 and t0003 Values in an array in an output ini file must be without inverted commas. Otherwise the values are considered as a multiword value. It is the same way as in whitespace.ini (t0001) where var4 is a multiword value and var5 is an array. + 10 points for word "pivo" in whitespace.ini. I am Czech. :-) --- t/t0001/whitespace.out.correct | 2 +- t/t0003/sections.out.correct | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/t/t0001/whitespace.out.correct b/t/t0001/whitespace.out.correct index 868e975..3336513 100644 --- a/t/t0001/whitespace.out.correct +++ b/t/t0001/whitespace.out.correct @@ -9,5 +9,5 @@ var2=" foo" var3="eco" var4="piyo baz qux" ;var5 is an array -var5="foo bar baz hoge" +var5=foo bar baz hoge var6="hoge" diff --git a/t/t0003/sections.out.correct b/t/t0003/sections.out.correct index 13c9c8c..0c94a90 100644 --- a/t/t0003/sections.out.correct +++ b/t/t0003/sections.out.correct @@ -4,14 +4,14 @@ var2="section 1 VAR 2" var3="section 1 VAR 3 " [section2] ;var1 is an array -var1="section 2 VAR 1" +var1=section 2 VAR 1 var2=" section 2 VAR 2" ;var3 is an array -var3="section 2 VAR 3" +var3=section 2 VAR 3 ;var4 is an array -var4="section 2 VAR 4" +var4=section 2 VAR 4 ;var5 is an array -var5="section 2 VAR 5" +var5=section 2 VAR 5 [section3] var1="section 3 VAR 1" var2="section 3 VAR 2"