Fixes all unit tests

This commit is contained in:
Manu Mtz-Almeida
2015-05-31 22:35:49 +02:00
parent 0d5dc25d39
commit 766493c916
3 changed files with 53 additions and 44 deletions

View File

@ -83,6 +83,6 @@ func TestPathCleanMallocs(t *testing.T) {
for _, test := range cleanTests {
allocs := testing.AllocsPerRun(100, func() { cleanPath(test.result) })
assert.Equal(t, allocs, 0)
assert.EqualValues(t, allocs, 0)
}
}