refactor: rename to vanity url

This commit is contained in:
2023-02-26 22:33:01 -07:00
parent 3f3ea4439c
commit 0621e2e815
60 changed files with 214 additions and 217 deletions

View File

@@ -1,7 +1,7 @@
package slice
import (
"github.com/sour-is/ev/pkg/math"
"go.sour.is/ev/pkg/math"
)
// FilterType returns a subset that matches the type.

View File

@@ -4,7 +4,7 @@ import (
"testing"
"github.com/matryer/is"
"github.com/sour-is/ev/pkg/slice"
"go.sour.is/ev/pkg/slice"
)
func TestAlign(t *testing.T) {
@@ -27,8 +27,8 @@ func TestAlign(t *testing.T) {
},
{
left: []string{"2", "3", "4"},
right: []string{"1", "3", "5"},
left: []string{"2", "3", "4"},
right: []string{"1", "3", "5"},
combined: []slice.Pair[*string, *string]{
{nil, ptr("1")},
{ptr("2"), nil},
@@ -37,7 +37,6 @@ func TestAlign(t *testing.T) {
{nil, ptr("5")},
},
},
}
is := is.New(t)