Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanewok committed Mar 27, 2018
1 parent d3308dd commit 2487377
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/harness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::path::{Path, PathBuf};
use std::sync::{Arc, Mutex};

use analysis;
use config::Config;
use config::{Config, Inferrable};
use env_logger;
use ls_types;
use serde_json;
Expand Down Expand Up @@ -59,7 +59,7 @@ impl Environment {
.join(format!("{}", COUNTER.fetch_add(1, Ordering::Relaxed)));

let mut config = Config::default();
config.target_dir = Some(target_path.clone());
config.target_dir = Inferrable::Specified(Some(target_path.clone()));
config.unstable_features = true;

let cache = Cache::new(project_path);
Expand Down

0 comments on commit 2487377

Please sign in to comment.