Typo fix for require.NotSamef

This commit is contained in:
Boyan 2019-07-24 22:58:20 +02:00 committed by George Lesica
parent 7088056203
commit db3bc60f5a

View File

@ -1347,7 +1347,7 @@ func NotSame(t TestingT, expected interface{}, actual interface{}, msgAndArgs ..
t.FailNow()
}
// NotSamef asserts that two pointers reference the same object.
// NotSamef asserts that two pointers do not reference the same object.
//
// assert.NotSamef(t, ptr1, ptr2, "error message %s", "formatted")
//