fix storage unit tests

This commit is contained in:
Łukasz Magiera 2023-11-27 17:58:49 +01:00
parent 73030c13dc
commit ab81d4c1b1

View File

@ -1091,7 +1091,11 @@ func TestDCAPCloses(t *testing.T) {
}
func TestSealAndVerifySynth(t *testing.T) {
origSealProofType := sealProofType
sealProofType = abi.RegisteredSealProof_StackedDrg2KiBV1_1_Feat_SyntheticPoRep
t.Cleanup(func() {
sealProofType = origSealProofType
})
if testing.Short() {
t.Skip("skipping test in short mode")