Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatsev committed Aug 25, 2015
1 parent c930090 commit 8276fd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/player.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ test('make sure that controls listeners do not get added too many times', functi

player.addTechControlsListeners = function() {
listeners++;
}
};

// Make sure native controls is false before starting test
player.usingNativeControls(false);
Expand All @@ -436,7 +436,7 @@ test('make sure that controls listeners do not get added too many times', functi
player.controls(false);

player.controls(true);
equal(listeners, 1, 'addTechControlsListeners should have gotten called once')
equal(listeners, 1, 'addTechControlsListeners should have gotten called once');

player.dispose();
});
Expand Down

0 comments on commit 8276fd9

Please sign in to comment.