Skip to content

Commit 3e766b0

Browse files
committed
Don't ignore errors in proto_test
Signed-off-by: Yolan Romailler <AnomalRoil@users.noreply.github.com>
1 parent 5efcf36 commit 3e766b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

share/dkg/pedersen/proto_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ func TestProtoSkip(t *testing.T) {
701701
// expect all results
702702
var results []*Result
703703
for optRes := range resCh {
704-
//require.NoError(t, optRes.Error)
704+
require.NoError(t, optRes.Error)
705705
results = append(results, optRes.Result)
706706
if len(results) == int(n) {
707707
break

0 commit comments

Comments
 (0)