Merge pull request #1003 from dotcloud/fix_utils_tests

fix regression in utils tests introduced by #980
This commit is contained in:
Victor Vieux 2013-06-24 09:14:13 -07:00
commit a3cb18d0f0

View file

@ -265,8 +265,8 @@ func TestCompareKernelVersion(t *testing.T) {
func TestHumanSize(t *testing.T) {
size1000 := HumanSize(1000)
if size1000 != "1 kB" {
t.Errorf("1000 -> expected 1 kB, got %s", size1000)
if size1000 != " 1 kB" {
t.Errorf("1000 -> expected 1 kB, got %s", size1000)
}
size1024 := HumanSize(1024)