From b7e672c91f4c0cead33b23fbc959a57756e9da2e Mon Sep 17 00:00:00 2001 From: Paul Balogh Date: Wed, 24 Jan 2024 14:51:37 -0600 Subject: [PATCH] Cleanup imports Signed-off-by: Paul Balogh --- db/place_suite_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/db/place_suite_test.go b/db/place_suite_test.go index 44698ef..23a31b8 100644 --- a/db/place_suite_test.go +++ b/db/place_suite_test.go @@ -2,11 +2,12 @@ package db import ( "context" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/suite" "log" "testing" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/suite" + "github.com/weesvc/weesvc-gorilla/model" "github.com/weesvc/weesvc-gorilla/testhelpers" )