update heal object unit test (#13886)

This commit is contained in:
jiangfucheng 2021-12-12 01:04:07 +08:00 committed by GitHub
parent 44fefe5b9f
commit 88c0d0120c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -663,6 +663,8 @@ func TestHealLastDataShard(t *testing.T) {
{"1MiB", 1 * humanize.MiByte},
{"5MiB", 5 * humanize.MiByte},
{"10MiB", 10 * humanize.MiByte},
{"5MiB-1KiB", 5*humanize.MiByte - 1*humanize.KiByte},
{"10MiB-1Kib", 10*humanize.MiByte - 1*humanize.KiByte},
}
for _, test := range tests {