From c476311a28eb4d21a5f70bf8db90d67490f88154 Mon Sep 17 00:00:00 2001 From: Stephen Mulcahy Date: Fri, 12 Apr 2013 13:37:40 +0000 Subject: [PATCH] Fixed unit test name in v1 and v2 tests Change-Id: Ia6a88be09a07ed269b1e9b43a86c88731c80784c --- tests/v1/test_volumes.py | 2 +- tests/v2/test_volumes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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')