updated template script for test args order

This commit is contained in:
alexchao26
2020-12-13 02:34:03 -05:00
parent 9e86d9784d
commit eb2eacdf9e
26 changed files with 333 additions and 362 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ func Test_part1(t *testing.T) {
input string
want int
}{
// {"actual", ACTUAL_ANSWER, util.ReadFile("input.txt")},
// {"actual", util.ReadFile("input.txt"), ACTUAL_ANSWER},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
@@ -44,7 +44,7 @@ func Test_part2(t *testing.T) {
input string
want int
}{
// {"actual", ACTUAL_ANSWER, util.ReadFile("input.txt")},
// {"actual", util.ReadFile("input.txt"), ACTUAL_ANSWER},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {