From f2cdc82be3e2efb67e1e1b976239ea6651876cf9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E5=BC=A0=E6=99=A8=E6=88=90?= Date: Sat, 9 Nov 2019 11:41:55 +0800 Subject: [PATCH] chore: fix typo (#439) --- packages/runtime-core/__tests__/vnode.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/runtime-core/__tests__/vnode.spec.ts b/packages/runtime-core/__tests__/vnode.spec.ts index cf203dfa17..beefbe550d 100644 --- a/packages/runtime-core/__tests__/vnode.spec.ts +++ b/packages/runtime-core/__tests__/vnode.spec.ts @@ -182,10 +182,10 @@ describe('vnode', () => { style: [ { color: 'blue', - with: '200px' + width: '200px' }, { - with: '300px', + width: '300px', height: '300px', fontSize: 30 } @@ -194,7 +194,7 @@ describe('vnode', () => { expect(mergeProps(props1, props2)).toMatchObject({ style: { color: 'blue', - with: '300px', + width: '300px', height: '300px', fontSize: 30 } -- 2.47.3