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
+1 -4
View File
@@ -1,8 +1,6 @@
package aoc_test
import (
"fmt"
"sort"
"testing"
"github.com/matryer/is"
@@ -27,7 +25,6 @@ func TestRepeat(t *testing.T) {
is.Equal(aoc.Repeat(5, 3), []int{5, 5, 5})
}
func TestTranspose(t *testing.T) {
is := is.New(t)
@@ -44,4 +41,4 @@ func TestTranspose(t *testing.T) {
{1, 0, 1},
},
)
}
}