lib/model: Remove ineffectual assignment in test

This commit is contained in:
Jakob Borg 2016-11-24 11:33:27 +01:00
parent e57f5499a1
commit 91568a173a

View File

@ -921,7 +921,7 @@ func TestIgnores(t *testing.T) {
t.Errorf("Incorrect ignores: %v != %v", ignores, expected) t.Errorf("Incorrect ignores: %v != %v", ignores, expected)
} }
ignores, _, err = m.GetIgnores("doesnotexist") _, _, err = m.GetIgnores("doesnotexist")
if err == nil { if err == nil {
t.Error("No error") t.Error("No error")
} }