Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jerch committed Dec 18, 2018
1 parent e5ff04e commit 0da6300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Buffer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ describe('Buffer', () => {
? input[i]
: (i % 3 === 1)
? input.substr(i, 2)
: input.substr(i-1, 2),
: input.substr(i - 1, 2),
terminal.buffer.lines.get(bufferIndex[0]).get(bufferIndex[1])[CHAR_DATA_CHAR_INDEX]);
}
});
Expand Down

0 comments on commit 0da6300

Please sign in to comment.