update Reported less Txbytes to RxPackets in docker_api_stats_test.go

Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>
This commit is contained in:
lixiaobing10051267 2017-02-28 19:39:18 +08:00
parent c956d25bfc
commit 5690de3c0e
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ func (s *DockerSuite) TestAPIStatsNetworkStats(c *check.C) {
c.Assert(postTxPackets, checker.GreaterOrEqualThan, expTxPkts,
check.Commentf("Reported less TxPackets than expected. Expected >= %d. Found %d. %s", expTxPkts, postTxPackets, pingouts))
c.Assert(postRxPackets, checker.GreaterOrEqualThan, expRxPkts,
check.Commentf("Reported less Txbytes than expected. Expected >= %d. Found %d. %s", expRxPkts, postRxPackets, pingouts))
check.Commentf("Reported less RxPackets than expected. Expected >= %d. Found %d. %s", expRxPkts, postRxPackets, pingouts))
}
func (s *DockerSuite) TestAPIStatsNetworkStatsVersioning(c *check.C) {