From 4d3dcb6493ab392d2f82745c575cb4b71d8932c1 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Tue, 6 Dec 2016 12:26:23 -0500 Subject: [PATCH] fix test --- test/compiler/names-deconflicted-nested/main.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/compiler/names-deconflicted-nested/main.html b/test/compiler/names-deconflicted-nested/main.html index 027ce3276b8e..7de2cf204d01 100644 --- a/test/compiler/names-deconflicted-nested/main.html +++ b/test/compiler/names-deconflicted-nested/main.html @@ -1,7 +1,7 @@ -{{#each array as row, j}} +{{#each array as row, i}}
- {{#each row as cell, k}} - [ {{j}}, {{k}} ] + {{#each row as cell, j}} + [ {{i}}, {{j}} ] {{/each}}
{{/each}}