[silence-errors]: adds Silence Usage

This commit is contained in:
Austin Riendeau
2015-10-26 17:38:08 -06:00
parent 03aabcda72
commit 4729b374ae
2 changed files with 6 additions and 1 deletions

View File

@ -220,6 +220,7 @@ func fullSetupTest(input string) resulter {
func noRRSetupTestSilenced(input string) resulter {
c := initialize()
c.SilenceErrors = true
c.SilenceUsage = true
return fullTester(c, input)
}