forked from TrueCloudLab/certificates
Fix error message in tests.
This commit is contained in:
parent
d30a95236d
commit
b900a7a2fc
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ func TestAuthorityNew(t *testing.T) {
|
|||
c.Root = []string{"foo"}
|
||||
return &newTest{
|
||||
config: c,
|
||||
err: errors.New("open foo failed: no such file or directory"),
|
||||
err: errors.New("error reading foo: no such file or directory"),
|
||||
}
|
||||
},
|
||||
"fail bad password": func(t *testing.T) *newTest {
|
||||
|
@ -121,7 +121,7 @@ func TestAuthorityNew(t *testing.T) {
|
|||
c.IntermediateCert = "wrong"
|
||||
return &newTest{
|
||||
config: c,
|
||||
err: errors.New("open wrong failed: no such file or directory"),
|
||||
err: errors.New("error reading wrong: no such file or directory"),
|
||||
}
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue