Skip to content

Commit c350ec7

Browse files
author
Jonathan Turner
committed
Fix old call in lexer tests
1 parent fad4f32 commit c350ec7

File tree

1 file changed

+1
-3
lines changed
  • src/libsyntax/parse/lexer

1 file changed

+1
-3
lines changed

src/libsyntax/parse/lexer/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1685,9 +1685,7 @@ mod tests {
16851685
fn mk_sh(cm: Rc<CodeMap>) -> errors::Handler {
16861686
// FIXME (#22405): Replace `Box::new` with `box` here when/if possible.
16871687
let emitter = errors::emitter::EmitterWriter::new(Box::new(io::sink()),
1688-
None,
1689-
Some(cm),
1690-
errors::snippet::FormatMode::EnvironmentSelected);
1688+
Some(cm));
16911689
errors::Handler::with_emitter(true, false, Box::new(emitter))
16921690
}
16931691

0 commit comments

Comments
 (0)