Merge pull request #11806 from aneshas/11770-redundant-err-nil-check
Removed redundant err == nil check Upstream-commit: afc8ae939aabf0e9e348ae62624a1740c8607508 Component: engine
This commit is contained in:
@@ -60,7 +60,7 @@ func TestTruncIndex(t *testing.T) {
|
||||
assertIndexGet(t, index, id[:1], "", true)
|
||||
|
||||
// An ambiguous id prefix should return an error
|
||||
if _, err := index.Get(id[:4]); err == nil || err == nil {
|
||||
if _, err := index.Get(id[:4]); err == nil {
|
||||
t.Fatal("An ambiguous id prefix should return an error")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user