From 50461b2f7c482b7c4aafdf78533a2257974dcbc2 Mon Sep 17 00:00:00 2001 From: RoyEden Date: Tue, 24 Aug 2021 18:38:51 -0300 Subject: [PATCH] test(directives/class.spec.js): Added whitespace to test fix #12113 --- test/unit/features/directives/class.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/features/directives/class.spec.js b/test/unit/features/directives/class.spec.js index e04cc95c882..49ceac7b1ed 100644 --- a/test/unit/features/directives/class.spec.js +++ b/test/unit/features/directives/class.spec.js @@ -166,7 +166,7 @@ describe('Directive v-bind:class', () => { it('corrects whitespace in staticClass merge in a component', done => { const vm = new Vue({ template: ` - + `, data: { @@ -174,7 +174,7 @@ describe('Directive v-bind:class', () => { }, components: { component1: { - template: '
' + template: '
' }, } }).$mount()