From 5ffe496a2233a0620099906e1cf2de24d5dfb56d Mon Sep 17 00:00:00 2001
From: yuexiao-wang <wang.yuexiao@zte.com.cn>
Date: Wed, 9 Nov 2016 17:43:10 +0800
Subject: [PATCH] Update function name for TestCalculBlockIO

Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
---
 cli/command/container/stats_unit_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cli/command/container/stats_unit_test.go b/cli/command/container/stats_unit_test.go
index fc6563c4d9..828d634c8a 100644
--- a/cli/command/container/stats_unit_test.go
+++ b/cli/command/container/stats_unit_test.go
@@ -6,7 +6,7 @@ import (
 	"github.com/docker/docker/api/types"
 )
 
-func TestCalculBlockIO(t *testing.T) {
+func TestCalculateBlockIO(t *testing.T) {
 	blkio := types.BlkioStats{
 		IoServiceBytesRecursive: []types.BlkioStatEntry{{8, 0, "read", 1234}, {8, 1, "read", 4567}, {8, 0, "write", 123}, {8, 1, "write", 456}},
 	}