Remove dbg!(...)

This commit is contained in:
Erlend Tobiassen 2019-01-27 15:44:59 +01:00
parent 08e12f974c
commit b149882d19
No known key found for this signature in database
GPG key ID: B48B8536A8F585B2

View file

@ -26,7 +26,7 @@ fn item_map_custom_crate_root(fixture: &str, root: &str) -> (Arc<ItemMap>, Modul
crate_graph.add_crate_root(db.file_id(root));
db.set_crate_graph(Arc::new(crate_graph));
let module = crate::source_binder::module_from_position(&db, dbg!(pos)).unwrap();
let module = crate::source_binder::module_from_position(&db, pos).unwrap();
let krate = module.krate(&db).unwrap();
let module_id = module.module_id;
(db.item_map(krate.crate_id), module_id)