Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaukov committed Apr 23, 2019
1 parent 449f768 commit f7b05ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pbn-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ PbnStream.prototype._transform = function(line, encoding, done) {
this.ingame = false;
}
else if (line.includes('{')) {
const braceIndex = line.indexOf('{')
let braceIndex = line.indexOf('{');
this.comment = {
type: 'comment',
text: ''
Expand Down

0 comments on commit f7b05ae

Please sign in to comment.