From 172a0d8a0e1e05d0bc47df09d50fb8ef49529f5f Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sun, 21 Jul 2019 06:05:19 +0200 Subject: *: added missing error checks in tests When we assign a value to err, make sure to also check for it being nil afterwards. If those were intentionally unchecked, we should remove the assignment in the first place. Those checks certainly never harm, but please review thoroughly and let me know. Signed-off-by: Christian Muehlhaeuser (cherry picked from commit 19d6f42a4d814a50bd262fbb69a9b670db9756a2) --- prune_test.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'prune_test.go') diff --git a/prune_test.go b/prune_test.go index 670cd07..2279636 100644 --- a/prune_test.go +++ b/prune_test.go @@ -56,6 +56,8 @@ func (s *PruneSuite) testPrune(c *C, deleteTime time.Time) { newCount++ return nil }) + c.Assert(err, IsNil) + if deleteTime.IsZero() { c.Assert(newCount < count, Equals, true) } else { -- cgit