From 4177e1f4e12eef7dc05fa5ba942d4f533136b096 Mon Sep 17 00:00:00 2001 From: Gabriel Bizdoc Date: Sun, 14 Dec 2025 01:57:02 +0200 Subject: [PATCH] update .gitignore --- .gitignore | 2 +- tests/tests.go | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 017e151..9cba6ed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ /problems tmp -tests +year25/tests # Ignore these to avoid leaking local replacements to the devkit diff --git a/tests/tests.go b/tests/tests.go index b30ef32..9b5b85d 100644 --- a/tests/tests.go +++ b/tests/tests.go @@ -10,7 +10,6 @@ import ( ) func assert(t *testing.T, err error, a, b any) { - t.Helper() if err != nil { t.Error(err) @@ -36,7 +35,6 @@ func Handler2[T any, K any](param T, f func(ctx aoc.Context, param T) (K, error) } func Test(t *testing.T, file string, handler func(aoc.Context) (any, error), want any) { - t.Helper() f, err := os.Open("tmp/" + file) if err != nil {