From 02baafafe06388e239f71b6a558408eba64f27c9 Mon Sep 17 00:00:00 2001 From: Ryan Carniato Date: Mon, 18 Mar 2019 21:27:37 -0700 Subject: [PATCH] fix fragment tests --- test/runtime/each.spec.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/runtime/each.spec.jsx b/test/runtime/each.spec.jsx index 587f21e..62b3d10 100644 --- a/test/runtime/each.spec.jsx +++ b/test/runtime/each.spec.jsx @@ -167,9 +167,9 @@ describe('Testing an only child each control flow with fragment children', () => function apply(array) { list(array); - expect(div.innerHTML).toBe(array.map(p => `${p}${p}`).join('')); + expect(div.innerHTML).toBe(array.map(p => `${p}${p}`).join('')); list([n1, n2, n3, n4]) - expect(div.innerHTML).toBe('aabbccdd'); + expect(div.innerHTML).toBe('aabbccdd'); } test('Create each control flow', () => { @@ -178,7 +178,7 @@ describe('Testing an only child each control flow with fragment children', () => }); - expect(div.innerHTML).toBe('aabbccdd'); + expect(div.innerHTML).toBe('aabbccdd'); }); test('1 missing', () => {