Skip to content

Commit 0810d91

Browse files
committed
Merge pull request emberjs#12608 from tiegz/master
Fix typo in helpers_test.js
2 parents 1250c6f + efb8487 commit 0810d91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ember-testing/tests/helpers_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -615,14 +615,14 @@ QUnit.test('`fillIn` fires `input` and `change` events in the proper order', fun
615615
oninputHandler(e) {
616616
events.push(e.type);
617617
},
618-
onchangeHanlders(e) {
618+
onchangeHandler(e) {
619619
events.push(e.type);
620620
}
621621
}
622622
});
623623

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

628628
run(App, App.advanceReadiness);

0 commit comments

Comments
 (0)