diff -r 5664650befcd -r 09f4a30e50cc gameServer2/src/protocol/test.rs --- a/gameServer2/src/protocol/test.rs Tue Aug 14 15:25:05 2018 +0200 +++ b/gameServer2/src/protocol/test.rs Thu Aug 16 19:33:03 2018 +0300 @@ -4,7 +4,7 @@ strategy::{Strategy, BoxedStrategy, Just, Map}, }; -use server::coretypes::{GameCfg, TeamInfo, HedgehogInfo}; +use crate::server::coretypes::{GameCfg, TeamInfo, HedgehogInfo}; use super::messages::{ HWProtocolMessage, HWProtocolMessage::* @@ -53,7 +53,7 @@ impl Arbitrary for Ascii { type Parameters = ::Parameters; - fn arbitrary_with(args: Self::Parameters) -> Self::Strategy { + fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy { "[a-zA-Z0-9]+".prop_map(Ascii).boxed() } @@ -63,8 +63,8 @@ impl Arbitrary for GameCfg { type Parameters = (); - fn arbitrary_with(args: ::Parameters) -> ::Strategy { - use server::coretypes::GameCfg::*; + fn arbitrary_with(_args: ::Parameters) -> ::Strategy { + use crate::server::coretypes::GameCfg::*; (0..10).no_shrink().prop_flat_map(|i| { proto_msg_match!(i, def = FeatureSize(0), 0 => FeatureSize(u32), @@ -87,7 +87,7 @@ impl Arbitrary for TeamInfo { type Parameters = (); - fn arbitrary_with(args: ::Parameters) -> ::Strategy { + fn arbitrary_with(_args: ::Parameters) -> ::Strategy { ("[a-z]+", 0u8..127u8, "[a-z]+", "[a-z]+", "[a-z]+", "[a-z]+", 0u8..127u8) .prop_map(|(name, color, grave, fort, voice_pack, flag, difficulty)| { fn hog(n: u8) -> HedgehogInfo {