Removed redundant err == nil check

Signed-off-by: Anes Hasicic <anes.hasicic@gmail.com>
Upstream-commit: b38e11b3c4a84e35bfd76bff8133a5338cd69423
Component: engine
This commit is contained in:
Anes Hasicic
2015-03-26 11:36:13 +01:00
parent b9013b315f
commit b5975ff15e

View File

@ -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")
}