Skip to content

Commit 0a77863

Browse files
borsehuss
authored andcommitted
Auto merge of rust-lang#7955 - ehuss:fix-plugin-syntax-rename, r=alexcrichton
Fix plugin tests for latest nightly. Crate was renamed in rust-lang/rust#69592.
1 parent 8633429 commit 0a77863

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/testsuite/plugins.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ fn panic_abort_plugins() {
375375
"bar/src/lib.rs",
376376
r#"
377377
#![feature(rustc_private)]
378-
extern crate syntax;
378+
extern crate rustc_ast;
379379
"#,
380380
)
381381
.build();
@@ -427,7 +427,7 @@ fn shared_panic_abort_plugins() {
427427
"bar/src/lib.rs",
428428
r#"
429429
#![feature(rustc_private)]
430-
extern crate syntax;
430+
extern crate rustc_ast;
431431
extern crate baz;
432432
"#,
433433
)

0 commit comments

Comments
 (0)