Fixed unit test name in v1 and v2 tests

Change-Id: Ia6a88be09a07ed269b1e9b43a86c88731c80784c
This commit is contained in:
Stephen Mulcahy
2013-04-12 13:37:40 +00:00
parent dca8dbd1c8
commit c476311a28
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ class VolumesTest(utils.TestCase):
cs.volumes.delete(v)
cs.assert_called('DELETE', '/volumes/1234')
def test_create_keypair(self):
def test_create_volume(self):
cs.volumes.create(1)
cs.assert_called('POST', '/volumes')

View File

@@ -32,7 +32,7 @@ class VolumesTest(utils.TestCase):
cs.volumes.delete(v)
cs.assert_called('DELETE', '/volumes/1234')
def test_create_keypair(self):
def test_create_volume(self):
cs.volumes.create(1)
cs.assert_called('POST', '/volumes')