Skip to content

Commit

Permalink
Auto merge of #7955 - ehuss:fix-plugin-syntax-rename, r=alexcrichton
Browse files Browse the repository at this point in the history
Fix plugin tests for latest nightly.

Crate was renamed in rust-lang/rust#69592.
  • Loading branch information
bors committed Mar 2, 2020
2 parents 62180bf + b786f85 commit cc5a5e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testsuite/plugins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ fn panic_abort_plugins() {
"bar/src/lib.rs",
r#"
#![feature(rustc_private)]
extern crate syntax;
extern crate rustc_ast;
"#,
)
.build();
Expand Down Expand Up @@ -427,7 +427,7 @@ fn shared_panic_abort_plugins() {
"bar/src/lib.rs",
r#"
#![feature(rustc_private)]
extern crate syntax;
extern crate rustc_ast;
extern crate baz;
"#,
)
Expand Down

0 comments on commit cc5a5e5

Please sign in to comment.