Skip to content

Commit

Permalink
fix: test: temporarily exempt SynthPorep constants from test
Browse files Browse the repository at this point in the history
  • Loading branch information
arajasek committed Sep 8, 2023
1 parent 8ab6eaa commit 45eb890
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions storage/sealer/proofpaths/cachefiles_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import (

func TestSDRLayersDefined(t *testing.T) {
for proof := range abi.SealProofInfos {
// TODO: Drop after feat/nv21 is merged in (that is, when SynthPoRep changes land)
if proof >= abi.RegisteredSealProof_StackedDrg2KiBV1_1_Feat_SyntheticPoRep && proof <= abi.RegisteredSealProof_StackedDrg64GiBV1_1_Feat_SyntheticPoRep {
continue
}
_, err := SDRLayers(proof)
require.NoError(t, err)
}
Expand Down

0 comments on commit 45eb890

Please sign in to comment.