aboutsummaryrefslogtreecommitdiff
path: root/vote/vote_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vote/vote_test.go')
-rw-r--r--vote/vote_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vote/vote_test.go b/vote/vote_test.go
index 6ff41b8..437dbe5 100644
--- a/vote/vote_test.go
+++ b/vote/vote_test.go
@@ -8,7 +8,7 @@ func TestVoteGeneration(t *testing.T) {
for i := range 100 {
bit := i%3 == 1
- vote, e := newVoteWithRand(bit, uint64(i), nil)
+ vote, e := newVoteWithRand(bit, nil)
if e != nil {
t.Fatalf("unexpected error: %v", e)
@@ -20,6 +20,6 @@ func TestVoteGeneration(t *testing.T) {
t.Fatalf("Proofs not correct! %+v", vote)
}
- t.Logf("Generated %+v\n", vote)
+ t.Logf("Generated %s\n", vote)
}
}