chore: fixes
Go Bump / bump (push) Successful in 7s
Go Test / build (push) Successful in 35s

This commit is contained in:
xuu
2024-01-22 16:07:16 -07:00
parent 951c2c298a
commit f8fa61672f
4 changed files with 21 additions and 9 deletions
+7 -1
View File
@@ -1,5 +1,11 @@
package aoc_test
import (
"testing"
"github.com/matryer/is"
aoc "go.sour.is/advent-of-code"
)
func TestLCM(t *testing.T) {
is := is.New(t)
@@ -24,4 +30,4 @@ func TestABS(t *testing.T) {
is.Equal(aoc.ABS(1), 1)
is.Equal(aoc.ABS(0), 0)
is.Equal(aoc.ABS(-1), 1)
}
}