Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #405 from ethcore/cliopt
Browse files Browse the repository at this point in the history
Fix test.
  • Loading branch information
arkpar committed Feb 11, 2016
2 parents 61c8f7b + ebe3990 commit 83c4a05
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ethcore/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ mod tests {
#[test]
fn it_can_be_started() {
let spec = get_test_spec();
let service = ClientService::start(spec, NetworkConfiguration::new());
let temp_path = RandomTempPath::new();
let service = ClientService::start(spec, NetworkConfiguration::new(), &temp_path.as_path());
assert!(service.is_ok());
}
}

0 comments on commit 83c4a05

Please sign in to comment.