diff --git a/exercises/hashmaps/hashmaps3.rs b/exercises/hashmaps/hashmaps3.rs index 18dd44c9..eafd1175 100644 --- a/exercises/hashmaps/hashmaps3.rs +++ b/exercises/hashmaps/hashmaps3.rs @@ -73,8 +73,8 @@ mod tests { fn validate_team_score_1() { let scores = build_scores_table(get_results()); let team = scores.get("England").unwrap(); - assert_eq!(team.goals_scored, 5); - assert_eq!(team.goals_conceded, 4); + assert_eq!(team.goals_scored, 4); + assert_eq!(team.goals_conceded, 2); } #[test]