Skip to content

Commit

Permalink
Tests: Fixed a typo in a variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
AurelioDeRosa committed May 19, 2016
1 parent 3203a92 commit 2a1fa11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec/main.spec.js
Expand Up @@ -2,7 +2,7 @@ import WebReader from '../../src/main';
import WebReaderError from '../../src/webreader-error';
import EventEmitter from '../../src/helpers/event-emitter';

let shortCuts = {
let shortcuts = {
toggleInteraction: [
{
ctrlKey: true,
Expand All @@ -16,7 +16,7 @@ let shortCuts = {
};

function simulateToggleInteractionShortcut() {
EventEmitter.fireEvent('keydown', document.documentElement, shortCuts.toggleInteraction.reverse()[0]);
EventEmitter.fireEvent('keydown', document.documentElement, shortcuts.toggleInteraction.reverse()[0]);
}

describe('WebReader', () => {
Expand Down

0 comments on commit 2a1fa11

Please sign in to comment.