Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jianoaix committed Feb 6, 2025
1 parent 4f1a123 commit baa547b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions disperser/dataapi/v2/server_v2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -668,6 +668,21 @@ func TestFetchBlobAttestationInfo(t *testing.T) {
assert.Equal(t, inclusionInfo, response.InclusionInfo)
assert.Equal(t, attestation, response.Attestation)
})

deleteItems(t, []commondynamodb.Key{
{
"PK": &types.AttributeValueMemberS{Value: "BatchHeader#" + hex.EncodeToString(bhh[:])},
"SK": &types.AttributeValueMemberS{Value: "BatchHeader"},
},
{
"PK": &types.AttributeValueMemberS{Value: "BatchHeader#" + hex.EncodeToString(bhh[:])},
"SK": &types.AttributeValueMemberS{Value: "Attestation"},
},
{
"PK": &types.AttributeValueMemberS{Value: "BlobKey#" + blobKey.Hex()},
"SK": &types.AttributeValueMemberS{Value: "BatchHeader#" + hex.EncodeToString(bhh[:])},
},
})
}

func TestFetchBatchHandlerV2(t *testing.T) {
Expand Down

0 comments on commit baa547b

Please sign in to comment.