Unit test typo fix

pull/629/merge
Boyan 2019-07-24 23:01:22 +02:00 committed by George Lesica
parent db3bc60f5a
commit 4d8751d477
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ func TestNotSame(t *testing.T) {
t.Error("NotSame should return false; non-pointer input")
}
if NotSame(mockT, p, p) {
t.Error("Same should return false")
t.Error("NotSame should return false")
}
}