Skip to content

Commit

Permalink
remove test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle committed Jan 17, 2025
1 parent 8e81d82 commit 098792f
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions crypto/keys/multisig/multisig_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -508,18 +508,6 @@ func TestVerifyMultisignatureNMRule(t *testing.T) {
m: 0,
expectErr: "invalid threshold: must be > 0, got 0",
},
{
name: "invalid: N=M",
n: 3,
m: 3,
expectErr: "invalid N-M multisig: N (3) must be > M (3)",
},
{
name: "invalid: N < M",
n: 2,
m: 3,
expectErr: "invalid N-M multisig: N (2) must be > M (3)",
},
}

for _, tc := range tests {
Expand Down

0 comments on commit 098792f

Please sign in to comment.