Merge pull request #19222 from karalabe/clique-fix-test

consensus/clique: fix test copy paste error, test what's documented
This commit is contained in:
Péter Szilágyi 2019-03-06 13:41:00 +02:00 committed by GitHub
commit ce3ea8c9b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -246,10 +246,10 @@ func TestClique(t *testing.T) {
// Votes from deauthorized signers are discarded immediately (auth votes)
signers: []string{"A", "B", "C"},
votes: []testerVote{
{signer: "C", voted: "B", auth: false},
{signer: "C", voted: "D", auth: true},
{signer: "A", voted: "C", auth: false},
{signer: "B", voted: "C", auth: false},
{signer: "A", voted: "B", auth: false},
{signer: "A", voted: "D", auth: true},
},
results: []string{"A", "B"},
}, {