fixing tests and build

This commit is contained in:
Nikolay Volf 2016-02-11 03:40:22 +03:00
parent 5f742c9142
commit ebe3990d0d

View File

@ -133,9 +133,8 @@ mod tests {
#[test]
fn it_can_be_started() {
let spec = get_test_spec();
let mut p = env::home_dir();
p.push(".parity");
let service = ClientService::start(spec, NetworkConfiguration::new(), &p);
let temp_path = RandomTempPath::new();
let service = ClientService::start(spec, NetworkConfiguration::new(), &temp_path.as_path());
assert!(service.is_ok());
}
}