Skip to content

Commit

Permalink
Fix more test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mkruskal-google committed May 10, 2024
1 parent 74f612d commit 71c59d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function parse(source, root, options) {
/* istanbul ignore else */
if (token === "option") {
parseOption(dummy, token); // skip
skip(';');
skip(";");
} else
throw illegal(token);
},
Expand Down
2 changes: 1 addition & 1 deletion tests/data/uncommon.proto
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ message Test2 {
number: 1000
full_name: 'uncommon.Test.inner_ext'
type: 'uncommon.Test'
}]
}];
};

enum Test3;
Expand Down

0 comments on commit 71c59d2

Please sign in to comment.