Merged in bugfix/tests (pull request #107)

Fix Fullsuite

* save

* foundthefix..

* codeandrequire
This commit is contained in:
Michael McGuinness
2025-03-19 11:54:14 +00:00
parent 3dd0c718cd
commit 1587da9d11
101 changed files with 977 additions and 910 deletions
+2 -3
View File
@@ -15,7 +15,6 @@ import (
"github.com/aws/aws-sdk-go-v2/service/sqs"
"github.com/google/uuid"
"github.com/pashagolub/pgxmock/v3"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
)
@@ -85,7 +84,7 @@ func TestTrigger(t *testing.T) {
Return(&sqs.SendMessageOutput{}, nil)
err = svc.Sync(ctx, clientId)
assert.NoError(t, err)
require.NoError(t, err)
})
t.Run("empty batch", func(t *testing.T) {
ctx := context.Background()
@@ -111,6 +110,6 @@ func TestTrigger(t *testing.T) {
)
err = svc.Sync(ctx, clientId)
assert.NoError(t, err)
require.NoError(t, err)
})
}