Skip to content

Commit

Permalink
Merge pull request #12608 from tiegz/master
Browse files Browse the repository at this point in the history
Fix typo in helpers_test.js
  • Loading branch information
mixonic committed Nov 14, 2015
2 parents 1250c6f + efb8487 commit 0810d91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ember-testing/tests/helpers_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -615,14 +615,14 @@ QUnit.test('`fillIn` fires `input` and `change` events in the proper order', fun
oninputHandler(e) {
events.push(e.type);
},
onchangeHanlders(e) {
onchangeHandler(e) {
events.push(e.type);
}
}
});

App.IndexView = EmberView.extend({
template: compile('<input type="text" id="first" oninput={{action "oninputHandler"}} onchange={{action "onchangeHanlders"}}>')
template: compile('<input type="text" id="first" oninput={{action "oninputHandler"}} onchange={{action "onchangeHandler"}}>')
});

run(App, App.advanceReadiness);
Expand Down

0 comments on commit 0810d91

Please sign in to comment.