From 841bb084ca288e142b1958346bb1182bf6f0a564 Mon Sep 17 00:00:00 2001 From: hareku Date: Fri, 7 Feb 2020 01:22:26 +0900 Subject: [PATCH] chore: fix typo in element test (#11085) --- test/unit/modules/vdom/patch/element.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/modules/vdom/patch/element.spec.js b/test/unit/modules/vdom/patch/element.spec.js index 09bf3fa6ef8..be74b86e72b 100644 --- a/test/unit/modules/vdom/patch/element.spec.js +++ b/test/unit/modules/vdom/patch/element.spec.js @@ -41,7 +41,7 @@ describe('vdom patch: element', () => { expect(elm.innerHTML).toBe('hello world') }) - it('should create create an elements which having span and text content', () => { + it('should create an elements which having span and text content', () => { const vnode = new VNode('div', {}, [ new VNode('span'), createTextVNode('hello world')