Skip to content

Commit 1b897df

Browse files
committed
use single tick
1 parent 878a836 commit 1b897df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/specs/vue-numeric.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ describe('vue-numeric.vue', () => {
208208
})
209209

210210
it('apply new separator immediately if it is changed', () => {
211-
const wrapper = mount(VueNumeric, { propsData: { value: 2000, separator: "," } })
212-
wrapper.setProps({ separator: "." })
213-
expect(wrapper.data().amount).to.equal("2.000")
211+
const wrapper = mount(VueNumeric, { propsData: { value: 2000, separator: ',' } })
212+
wrapper.setProps({ separator: '.' })
213+
expect(wrapper.data().amount).to.equal('2.000')
214214
})
215215
})

0 commit comments

Comments
 (0)