Skip to content

Commit 5ba60e7

Browse files
committed
[2024] Remove bad test cases from day 20
1 parent 91fe2c4 commit 5ba60e7

File tree

1 file changed

+0
-33
lines changed

1 file changed

+0
-33
lines changed

aoc_2024/src/day_20.rs

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -86,36 +86,3 @@ impl Problem {
8686
costs
8787
}
8888
}
89-
90-
#[cfg(test)]
91-
mod test {
92-
use indoc::indoc;
93-
94-
const CASE: &str = indoc! {"
95-
###############
96-
#...#...#.....#
97-
#.#.#.#.#.###.#
98-
#S#...#.#.#...#
99-
#######.#.#.###
100-
#######.#.#...#
101-
#######.#.###.#
102-
###..E#...#...#
103-
###.#######.###
104-
#...###...#...#
105-
#.#####.#.###.#
106-
#.#...#.#.#...#
107-
#.#.#.#.#.#.###
108-
#...#...#...###
109-
###############
110-
"};
111-
112-
#[test]
113-
fn part_a() {
114-
assert_eq!(super::part_a(CASE), 44.into());
115-
}
116-
117-
#[test]
118-
fn part_b() {
119-
assert_eq!(super::part_b(CASE), ().into());
120-
}
121-
}

0 commit comments

Comments
 (0)