Adjust NotNil error message

pull/186/head
Connor Peet 2015-06-21 07:39:50 +10:00
parent ddcad49ec6
commit 6756bdecf4
1 changed files with 1 additions and 1 deletions

View File

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