@@ -19,19 +19,20 @@ import (
1919	"testing" 
2020	"time" 
2121
22- 	dynamodb  "github.com/dapr/components-contrib/state/aws/dynamodb" 
22+ 	"github.com/dapr/components-contrib/state/aws/dynamodb" 
2323	"github.com/dapr/components-contrib/tests/certification/embedded" 
2424	"github.com/dapr/components-contrib/tests/certification/flow" 
2525	"github.com/dapr/go-sdk/client" 
2626
27+ 	"github.com/stretchr/testify/assert" 
28+ 	"github.com/stretchr/testify/require" 
29+ 
2730	secretstore_env "github.com/dapr/components-contrib/secretstores/local/env" 
2831	"github.com/dapr/components-contrib/tests/certification/flow/sidecar" 
2932	secretstores_loader "github.com/dapr/dapr/pkg/components/secretstores" 
3033	state_loader "github.com/dapr/dapr/pkg/components/state" 
3134	dapr_testing "github.com/dapr/dapr/pkg/testing" 
3235	"github.com/dapr/kit/logger" 
33- 	"github.com/stretchr/testify/assert" 
34- 	"github.com/stretchr/testify/require" 
3536)
3637
3738const  (
@@ -139,6 +140,12 @@ func TestAWSDynamoDBStorage(t *testing.T) {
139140			err  =  cl .SaveState (ctx , statestore , kdel , []byte (kdel ), nil )
140141			require .NoError (t , err )
141142
143+ 			err  =  cl .DeleteState (ctx , statestore , ktx1 , nil )
144+ 			require .NoError (t , err )
145+ 
146+ 			err  =  cl .DeleteState (ctx , statestore , ktx2 , nil )
147+ 			require .NoError (t , err )
148+ 
142149			err  =  cl .ExecuteStateTransaction (ctx , statestore , nil , []* client.StateOperation {
143150				{
144151					Type : client .StateOperationTypeUpsert ,
0 commit comments