From e90434edd55440189afdcd573ff01ce707d07f0e Mon Sep 17 00:00:00 2001 From: mikestefanello Date: Thu, 20 Jan 2022 18:02:14 -0500 Subject: [PATCH] Fixed assert package import. --- go.mod | 1 - msg/msg_test.go | 2 +- tests/tests.go | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 8e63b39..6df0ad1 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/msg/msg_test.go b/msg/msg_test.go index 8f4a333..fd8b8b1 100644 --- a/msg/msg_test.go +++ b/msg/msg_test.go @@ -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" diff --git a/tests/tests.go b/tests/tests.go index 6bad6a0..d5127c5 100644 --- a/tests/tests.go +++ b/tests/tests.go @@ -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"