lotus/storage/sealer/proofpaths/cachefiles_test.go
Andrew Jackson (Ajax) a520ee85d6 master-to-sturdy
2023-09-21 10:37:02 -05:00

17 lines
277 B
Go

package proofpaths
import (
"testing"
"github.com/stretchr/testify/require"
"github.com/filecoin-project/go-state-types/abi"
)
func TestSDRLayersDefined(t *testing.T) {
for proof := range abi.SealProofInfos {
_, err := SDRLayers(proof)
require.NoError(t, err)
}
}