Skip to content

Commit

Permalink
Auto merge of rust-lang#7955 - ehuss:fix-plugin-syntax-rename, r=alex…
Browse files Browse the repository at this point in the history
…crichton

Fix plugin tests for latest nightly.

Crate was renamed in rust-lang/rust#69592.
  • Loading branch information
bors authored and ehuss committed Mar 16, 2020
1 parent 8633429 commit 0a77863
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 0a77863

Please sign in to comment.