Fix test.

This commit is contained in:
Gav 2017-03-02 16:09:30 +01:00
parent 90562c1331
commit 89910c0174
1 changed files with 1 additions and 1 deletions

View File

@ -821,7 +821,7 @@ impl Configuration {
let ui_path = replace_home(&data_path, &self.args.flag_ui_path);
if self.args.flag_geth && !cfg!(windows) {
let geth_root = if self.chain() == 'testnet'.to_owned() { path::ethereum::test() } else { path::ethereum::default() };
let geth_root = if self.chain() == "testnet".to_owned() { path::ethereum::test() } else { path::ethereum::default() };
::std::fs::create_dir_all(geth_root.as_path()).unwrap_or_else(
|e| warn!("Failed to create '{}' for geth mode: {}", &geth_root.to_str().unwrap(), e));
}