add //nolint for new 1.16 deprecation warnings

- dsa
- pem.DecryptPEMBlock
This commit is contained in:
max furman 2021-02-18 20:14:20 -08:00
parent 296d9ee293
commit f88f58440f
4 changed files with 4 additions and 4 deletions

View file

@ -295,7 +295,7 @@ func TestSSHAgentKMS_CreateSigner(t *testing.T) {
t.Fatal(err)
}
block, _ := pem.Decode(b)
block.Bytes, err = x509.DecryptPEMBlock(block, []byte("pass"))
block.Bytes, err = x509.DecryptPEMBlock(block, []byte("pass")) //nolint
if err != nil {
t.Fatal(err)
}