Adjust NotNil error message

This commit is contained in:
Connor Peet 2015-06-21 07:39:50 +10:00
parent ddcad49ec6
commit 6756bdecf4

View File

@ -301,7 +301,7 @@ func NotNil(t TestingT, object interface{}, msgAndArgs ...interface{}) bool {
} }
if !success { if !success {
Fail(t, "Expected not to be nil.", msgAndArgs...) Fail(t, "Expected value not to be nil.", msgAndArgs...)
} }
return success return success