Fix state in test
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Valentin Brandl 2020-10-30 17:15:09 +01:00
parent 6f931ce46f
commit 26a5025a32

View File

@ -23,11 +23,7 @@ macro_rules! test_service {
let cache_dir = dbg!(tempdir().unwrap());
let repos = format!("{}/", repo_dir.path().display());
let cache = format!("{}/", cache_dir.path().display());
let state = dbg!(State {
repos,
cache,
logger: crate::config::init(),
});
let state = dbg!(State { repos, cache });
let mut app = test_app!(state, web::resource($path).to($what::<T>));