From f0f2b761833184c595c9e000dce61a938fa2516d Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 29 Apr 2016 19:44:10 -0400 Subject: [PATCH] fix eslint --- test/unit/features/directives/for.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/features/directives/for.spec.js b/test/unit/features/directives/for.spec.js index a4a987fc..085ee5b7 100644 --- a/test/unit/features/directives/for.spec.js +++ b/test/unit/features/directives/for.spec.js @@ -314,8 +314,8 @@ describe('Directive v-for', () => { const vm = new Vue({ data: { items: [ - { items: [{a: 1}, {a: 2}], a: 1 }, - { items: [{a: 3}, {a: 4}], a: 2 } + { items: [{ a: 1 }, { a: 2 }], a: 1 }, + { items: [{ a: 3 }, { a: 4 }], a: 2 } ] }, template: