change whitelist init function name

This commit is contained in:
Phillip Wittrock 2016-01-07 10:27:43 -08:00
parent 144ccdf657
commit ae7f38b16f

View File

@ -205,8 +205,8 @@ func Run() error {
return nil
}
// initWhiltelist initializes the whitelist of test failures that can be retried.
func initWhitelist() {
// initRetryWhitelist initializes the whitelist of test failures that can be retried.
func initRetryWhitelist() {
if *testRetryWhitelist == "" {
return
}
@ -238,7 +238,7 @@ func main() {
if len(flag.Args()) == 0 {
glog.Fatalf("USAGE: runner <hosts to test>")
}
initWhitelist()
initRetryWhitelist()
// Run the tests.
err := Run()