diff --git a/tests/v1/test_volumes.py b/tests/v1/test_volumes.py index 913e5a911..3306fdbcf 100644 --- a/tests/v1/test_volumes.py +++ b/tests/v1/test_volumes.py @@ -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') diff --git a/tests/v2/test_volumes.py b/tests/v2/test_volumes.py index 85401afa9..8e46da6c0 100644 --- a/tests/v2/test_volumes.py +++ b/tests/v2/test_volumes.py @@ -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')