sqs-browse: fixed pad printf and fixed test parallel

This commit is contained in:
Leon Mika 2022-03-23 22:16:34 +11:00
parent c9a31eae35
commit fb749aaee2
4 changed files with 20 additions and 15 deletions

View file

@ -10,9 +10,10 @@ import (
)
func TestService_Scan(t *testing.T) {
tableName := "test-table"
tableName := "service-scan-test-table"
client := testdynamo.SetupTestTable(t, tableName, testData)
client, cleanupFn := testdynamo.SetupTestTable(t, tableName, testData)
defer cleanupFn()
provider := dynamo.NewProvider(client)
t.Run("return all columns and fields in sorted order", func(t *testing.T) {