Skip to content

Commit

Permalink
Auto merge of #8907 - ehuss:auto_traits, r=alexcrichton
Browse files Browse the repository at this point in the history
Fix custom_target_dependency test.

The feature was renamed in rust-lang/rust#79336
  • Loading branch information
bors committed Nov 29, 2020
2 parents 12c107a + 8d230f9 commit 502ced2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testsuite/custom_target.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ fn custom_target_minimal() {
#[cargo_test]
fn custom_target_dependency() {
if !is_nightly() {
// Requires features no_core, lang_items, optin_builtin_traits
// Requires features no_core, lang_items, auto_traits
return;
}
let p = project()
Expand All @@ -84,7 +84,7 @@ fn custom_target_dependency() {
r#"
#![feature(no_core)]
#![feature(lang_items)]
#![feature(optin_builtin_traits)]
#![feature(auto_traits)]
#![no_core]
extern crate bar;
Expand Down

0 comments on commit 502ced2

Please sign in to comment.