Skip to content

Commit

Permalink
fix rust-fmt issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarthelmess committed Jul 14, 2022
1 parent 823a120 commit e67b740
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion boa_engine/src/syntax/lexer/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,10 @@ fn regex_equals_following_assignment() {
TokenKind::Keyword((Keyword::Const, false)),
TokenKind::identifier(interner.get_or_intern_static("myRegex")),
TokenKind::Punctuator(Punctuator::Assign),
TokenKind::regular_expression_literal(interner.get_or_intern_static("="), Sym::EMPTY_STRING),
TokenKind::regular_expression_literal(
interner.get_or_intern_static("="),
Sym::EMPTY_STRING
),
TokenKind::Punctuator(Punctuator::Semicolon),
];

Expand Down

0 comments on commit e67b740

Please sign in to comment.