Correct ineffassign

Signed-off-by: Gábor Lipták <gliptak@gmail.com>
This commit is contained in:
Gábor Lipták 2018-10-18 21:43:09 -04:00
parent d203ae37f4
commit e5d7879622
No known key found for this signature in database
GPG Key ID: 8551785584B8BFFD
1 changed files with 3 additions and 0 deletions

View File

@ -92,6 +92,9 @@ func fillPacks(t testing.TB, rnd *randReader, be Saver, pm *packerManager, buf [
}
n, err := packer.Add(restic.DataBlob, id, buf)
if err != nil {
t.Fatal(err)
}
if n != l {
t.Errorf("Add() returned invalid number of bytes: want %v, got %v", n, l)
}