Fixed assert package import.

This commit is contained in:
mikestefanello 2022-01-20 18:02:14 -05:00
parent cd4cc1693c
commit 107f2e3262
3 changed files with 2 additions and 3 deletions

1
go.mod
View file

@ -7,7 +7,6 @@ require (
github.com/Masterminds/sprig v2.22.0+incompatible
github.com/PuerkitoBio/goquery v1.8.0
github.com/eko/gocache/v2 v2.1.0
github.com/go-playground/assert/v2 v2.0.1
github.com/go-playground/validator/v10 v10.9.0
github.com/go-redis/redis/v8 v8.11.4
github.com/golang-jwt/jwt v3.2.2+incompatible

View file

@ -5,7 +5,7 @@ import (
"github.com/mikestefanello/pagoda/tests"
"github.com/go-playground/assert/v2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/labstack/echo/v4"

View file

@ -12,7 +12,7 @@ import (
"github.com/mikestefanello/pagoda/ent"
"github.com/go-playground/assert/v2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/gorilla/sessions"