Commit 705a028d authored by Caleb Spare's avatar Caleb Spare Committed by Shenghou Ma

testing/quick: brought Check parameter name in line with function doc

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/102830043
parent 4ecf0b10
...@@ -225,12 +225,12 @@ func (s *CheckEqualError) Error() string { ...@@ -225,12 +225,12 @@ func (s *CheckEqualError) Error() string {
// t.Error(err) // t.Error(err)
// } // }
// } // }
func Check(function interface{}, config *Config) (err error) { func Check(f interface{}, config *Config) (err error) {
if config == nil { if config == nil {
config = &defaultConfig config = &defaultConfig
} }
f, fType, ok := functionAndType(function) fVal, fType, ok := functionAndType(f)
if !ok { if !ok {
err = SetupError("argument is not a function") err = SetupError("argument is not a function")
return return
...@@ -255,7 +255,7 @@ func Check(function interface{}, config *Config) (err error) { ...@@ -255,7 +255,7 @@ func Check(function interface{}, config *Config) (err error) {
return return
} }
if !f.Call(arguments)[0].Bool() { if !fVal.Call(arguments)[0].Bool() {
err = &CheckError{i + 1, toInterfaces(arguments)} err = &CheckError{i + 1, toInterfaces(arguments)}
return return
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment