mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 18:03:51 +01:00
remove test warnings (#12201)
# Description I get warnings message when running tests: ``` warning: unused import: `Feature` --> crates/nu-plugin/src/protocol/mod.rs:21:25 | 21 | pub use protocol_info::{Feature, Protocol}; | ^^^^^^^ | = note: `#[warn(unused_imports)]` on by default ``` I think it's useless can can be removed.
This commit is contained in:
parent
64bab4b6a6
commit
e2907e7e3a
@ -16,9 +16,9 @@ use nu_protocol::{
|
|||||||
Span, Spanned, Value,
|
Span, Spanned, Value,
|
||||||
};
|
};
|
||||||
pub use plugin_custom_value::PluginCustomValue;
|
pub use plugin_custom_value::PluginCustomValue;
|
||||||
pub use protocol_info::ProtocolInfo;
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub use protocol_info::{Feature, Protocol};
|
pub use protocol_info::Protocol;
|
||||||
|
pub use protocol_info::ProtocolInfo;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
/// A sequential identifier for a stream
|
/// A sequential identifier for a stream
|
||||||
|
Loading…
Reference in New Issue
Block a user