Replace deprecated SetOutput func with SetOut and SetErr in test (#1053)

This commit is contained in:
Kanji Yomoda
2020-04-02 01:25:22 +09:00
committed by GitHub
parent 6607e6b860
commit f62883520e
2 changed files with 8 additions and 4 deletions

View File

@ -13,8 +13,10 @@ var update = flag.Bool("update", false, "update .golden files")
func init() {
// Mute commands.
addCmd.SetOutput(new(bytes.Buffer))
initCmd.SetOutput(new(bytes.Buffer))
addCmd.SetOut(new(bytes.Buffer))
addCmd.SetErr(new(bytes.Buffer))
initCmd.SetOut(new(bytes.Buffer))
initCmd.SetErr(new(bytes.Buffer))
}
// ensureLF converts any \r\n to \n