Skip to content

Commit

Permalink
Remove superfluous extern crate test.
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Jul 31, 2016
1 parent 3f23c52 commit 91cc8ef
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ rust:
script:
- cargo build --verbose
- cargo doc
- cargo test --verbose;
- if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
cargo test --verbose;
cargo bench --verbose;
fi
- cargo build --verbose --manifest-path=stree_cmd/Cargo.toml
Expand Down
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@

#![deny(missing_docs)]

#![cfg_attr(test, feature(test))]

#[cfg(test)] extern crate quickcheck;
#[cfg(test)] extern crate test;

pub use table::SuffixTable;

Expand Down
3 changes: 0 additions & 3 deletions tests/tests.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#![feature(test)]

extern crate quickcheck;
extern crate suffix;
extern crate test;

use quickcheck::{QuickCheck, TestResult, Testable};
use suffix::SuffixTable;
Expand Down

0 comments on commit 91cc8ef

Please sign in to comment.