Fix incorrect test case name in test_net.py

The tests.compute.pollsters.test_net:TestNetRatesPollster has a
test case named test_outgoing_bytes, actually it should be
test_outgoing_bytes_rate.

Change-Id: Ia1fb4f3a3e39a6cc222dfdd006e42a391e164f59
This commit is contained in:
ZhiQiang Fan 2015-01-14 09:47:21 +08:00
parent 3c2f904efa
commit ed98106a5d

View File

@ -308,7 +308,7 @@ class TestNetRatesPollster(base.TestPollsterBase):
],
)
def test_outgoing_bytes(self):
def test_outgoing_bytes_rate(self):
instance_name_id = "%s-%s" % (self.instance.name, self.instance.id)
self._check_get_samples(
net.OutgoingBytesRatePollster,