From: 张晨成 Date: Sat, 9 Nov 2019 03:41:55 +0000 (+0800) Subject: chore: fix typo (#439) X-Git-Tag: v3.0.0-alpha.0~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f2cdc82be3e2efb67e1e1b976239ea6651876cf9;p=thirdparty%2Fvuejs%2Fcore.git chore: fix typo (#439) --- 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 }