forked from TrueCloudLab/lego
Remove keyBits from tests, use keyType instead.
This commit is contained in:
parent
a61e41c90e
commit
c9e1d0a482
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ func TestNewClient(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if client.keyType != keyType {
|
if client.keyType != keyType {
|
||||||
t.Errorf("Expected keyBits to be %d but was %d", keyType, client.keyType)
|
t.Errorf("Expected keyType to be %s but was %s", keyType, client.keyType)
|
||||||
}
|
}
|
||||||
|
|
||||||
if expected, actual := 2, len(client.solvers); actual != expected {
|
if expected, actual := 2, len(client.solvers); actual != expected {
|
||||||
|
|
Loading…
Reference in a new issue