Open
Description
viewing https://godoc.org/github.com/stretchr/testify/require#NoError
gives the example
actualObj, err := SomeFunction()
if assert.NoError(err) {
assert.Equal(t, expectedObj, actualObj)
}
but require.NoError does not return a value . (also the example shows assert, though it should be about require)
IMO require.NoError should return a bool to match assert.NoError
let me know if you want a PR to fix.