Skip to content

Commit

Permalink
test: change model text's priority case (#9170)
Browse files Browse the repository at this point in the history
  • Loading branch information
dejour authored and yyx990803 committed Dec 11, 2018
1 parent 6980035 commit 984393f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/features/directives/model-text.spec.js
Expand Up @@ -238,7 +238,7 @@ describe('Directive v-model text', () => {
template: '<input v-model="a" @input="onInput">',
methods: {
onInput (e) {
spy(e.target.value)
spy(this.a)
}
}
}).$mount()
Expand Down

0 comments on commit 984393f

Please sign in to comment.