Skip to content

Commit 7a4b39b

Browse files
committed
Fix tests for day 17
1 parent 58b3e78 commit 7a4b39b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/17.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ mod tests {
8080
#[test]
8181
fn test_part_one() {
8282
let result = part_one(&advent_of_code::template::read_file("examples", DAY));
83-
assert_eq!(result, Some("5,7,3,0".to_string()));
83+
assert_eq!(result, Some("7,1,2,7".to_string()));
8484
}
8585

8686
#[test]
8787
fn test_part_two() {
8888
let result = part_two(&advent_of_code::template::read_file("examples", DAY));
89-
assert_eq!(result, Some(117440));
89+
assert_eq!(result, Some(178229));
9090
}
9191
}

0 commit comments

Comments
 (0)