Skip to content

Commit

Permalink
Fix ignored tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkouhia committed May 26, 2024
1 parent a86be81 commit a77b7ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ mod tests {
.trim();
let mut maze = Maze::parse_emojis(emojis).unwrap();
let solution = maze.solve().unwrap();
assert_eq!(solution.shortest_path, 16);
assert_eq!(solution.hero_steps.len() - 1, 16);
}

#[ignore = "not implemented"]
Expand All @@ -566,6 +566,6 @@ mod tests {
.trim();
let mut maze = Maze::parse_emojis(emojis).unwrap();
let solution = maze.solve().unwrap();
assert_eq!(solution.shortest_path, 16);
assert_eq!(solution.hero_steps.len() - 1, 16);
}
}

0 comments on commit a77b7ae

Please sign in to comment.