Skip to content

Commit

Permalink
fix: remove unused event
Browse files Browse the repository at this point in the history
  • Loading branch information
hansemannn authored and sgtcoolguy committed Apr 7, 2021
1 parent 91c00ba commit 56ddf95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Resources/ti.ui.textfield.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ describe('Titanium.UI.TextField', () => {
win.addEventListener('postlayout', function listener () {
win.removeEventListener('postlayout', listener);
textField.setSelection(0, 5);
setTimeout(function (e) {
setTimeout(function () {
try {
should(textField.selection.length).eql(5);
should(textField.selection.location).eql(0);
Expand Down

0 comments on commit 56ddf95

Please sign in to comment.