You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some tests in command_test.go use the ioutil.ReadAll function from io/ioutils package. This package is deprecated as of Go 1.16, and the documentation advises to replace it with io.ReadAll
Description
Replace
ioutil.ReadAll
withio.ReadAll
.Some tests in
command_test.go
use theioutil.ReadAll
function fromio/ioutils
package. This package is deprecated as of Go 1.16, and the documentation advises to replace it withio.ReadAll
References
io/ioutil
package documentation: https://pkg.go.dev/io/ioutilioutil.ReadAll
documentation: https://pkg.go.dev/io/ioutil#ReadAllThe text was updated successfully, but these errors were encountered: