Skip to content

Commit

Permalink
Fix operator keygen test to check for 32 bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
picatz authored and fredrikhgrelland committed Oct 22, 2020
1 parent c25e506 commit 6f4f792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/operator_keygen_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func TestKeygenCommand(t *testing.T) {
t.Fatalf("err: %s", err)
}

if len(result) != 16 {
if len(result) != 32 {
t.Fatalf("bad: %#v", result)
}
}

0 comments on commit 6f4f792

Please sign in to comment.