Skip to content

Commit

Permalink
Fix batch size override in test
Browse files Browse the repository at this point in the history
  • Loading branch information
danie1sullivan committed Nov 9, 2023
1 parent f8807ac commit d828e51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion registry/dynamodb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ func TestDynamoDBRegistryApplyChanges(t *testing.T) {
t.Run(tc.name, func(t *testing.T) {
originalMaxBatchSize := dynamodbMaxBatchSize
if tc.maxBatchSize > 0 {
dynamodbMaxBatchSize = 2
dynamodbMaxBatchSize = tc.maxBatchSize
}

api, p := newDynamoDBAPIStub(t, &tc.stubConfig)
Expand Down

0 comments on commit d828e51

Please sign in to comment.