Remove unused extern crate test

Recently we removed the "unstable" feature, I missed the duplicate
`extern crate test` when doing so :(

Since we no longer have the "unstable" feature this line of code is
never compiled in.

Remove the unused ``extern crate test`, we have the correct line further
up the file `#[cfg(bench)] extern crate test;`.
This commit is contained in:
Tobin C. Harding 2022-07-19 14:14:48 +10:00
parent 01a8cc6848
commit da8b1b5439
1 changed files with 0 additions and 2 deletions

View File

@ -85,8 +85,6 @@ extern crate bincode;
extern crate serde_json; extern crate serde_json;
#[cfg(all(test, feature = "serde"))] #[cfg(all(test, feature = "serde"))]
extern crate serde_test; extern crate serde_test;
#[cfg(all(test, feature = "unstable"))]
extern crate test;
#[cfg(test)] #[cfg(test)]
#[macro_use] #[macro_use]