mirror of
https://github.com/Threnklyn/advent-of-code-go.git
synced 2026-05-19 03:23:27 +02:00
fixed incorrect test input for 2015/5
This commit is contained in:
@@ -16,7 +16,7 @@ func Test_md5Chess(t *testing.T) {
|
|||||||
{"example_part1", "abc", 1, "18f47a30"},
|
{"example_part1", "abc", 1, "18f47a30"},
|
||||||
{"actual_part1", util.ReadFile("input.txt"), 1, "801b56a7"},
|
{"actual_part1", util.ReadFile("input.txt"), 1, "801b56a7"},
|
||||||
{"example_part2", "abc", 2, "05ace8e3"},
|
{"example_part2", "abc", 2, "05ace8e3"},
|
||||||
{"actual_part2", "abc", 2, "424a0197"},
|
{"actual_part2", util.ReadFile("input.txt"), 2, "424a0197"},
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
|||||||
Reference in New Issue
Block a user