Skip to content

Commit

Permalink
Fix failing test due to 408d563
Browse files Browse the repository at this point in the history
  • Loading branch information
kimrutherford committed Jan 10, 2025
1 parent 294ab81 commit aca5cf6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_db_json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -763,11 +763,14 @@ fn get_test_web_data() -> WebData {
community_response_rates: vec![],
annotation_type_counts_by_year: StatsIntegerTable { header: vec![], data: vec![] },
};
let mut orcid_name_map = HashMap::new();
orcid_name_map.insert("0000-0001-6277-726X".into(), "Kim Rutherford".into());

let web_data_build = WebDataBuild::new(&raw, domain_data,
uniprot_data,
rnacentral_data, gene_history,
None, None, chado_queries, &config);
None, None, chado_queries,
orcid_name_map, &config);
web_data_build.get_web_data()
}

Expand Down

0 comments on commit aca5cf6

Please sign in to comment.