diff options
Diffstat (limited to 'spec/outputs/tables.lua')
-rw-r--r-- | spec/outputs/tables.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/outputs/tables.lua b/spec/outputs/tables.lua index 1d28a43..e9df1c4 100644 --- a/spec/outputs/tables.lua +++ b/spec/outputs/tables.lua | |||
@@ -187,18 +187,18 @@ k = { | |||
187 | ["hello"] = "world", | 187 | ["hello"] = "world", |
188 | ["one"] = "zone" | 188 | ["one"] = "zone" |
189 | } | 189 | } |
190 | local f = "one", { | 190 | local f1, f2, f3 = "one", { |
191 | ["two"] = three | 191 | ["two"] = three |
192 | }, "four" | 192 | }, "four" |
193 | f = { | 193 | f1, f2 = { |
194 | ["two"] = three | 194 | ["two"] = three |
195 | }, "four" | 195 | }, "four" |
196 | f = { | 196 | f1 = { |
197 | "one", | 197 | "one", |
198 | ["two"] = three, | 198 | ["two"] = three, |
199 | "four" | 199 | "four" |
200 | } | 200 | } |
201 | local j = "one", { | 201 | local j1, j2, j3, j4 = "one", { |
202 | ["two"] = three, | 202 | ["two"] = three, |
203 | ["four"] = five | 203 | ["four"] = five |
204 | }, 6, 7 | 204 | }, 6, 7 |