diff options
| author | Zuul <zuul@review.openstack.org> | 2019-02-27 22:15:46 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2019-02-27 22:15:46 +0000 |
| commit | 1ea988e5c6f15e9cc1a66d2393c76fc3c4b3cab3 (patch) | |
| tree | f35345a5853f979e88a388741382eec688164d9e /openstackclient | |
| parent | 462a087bfb5614241b6f2dac531a3d3b766d600b (diff) | |
| parent | 811b001234b9652f8fbfb7419bc9be51ee43de64 (diff) | |
| download | python-openstackclient-1ea988e5c6f15e9cc1a66d2393c76fc3c4b3cab3.tar.gz | |
Merge "This fix removes an erroneous underscore found within the function named test_snapshot_delete within test_snapshot.py found in both volume v1 and v2 of python-openstackclient."
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/tests/functional/volume/v1/test_snapshot.py | 2 | ||||
| -rw-r--r-- | openstackclient/tests/functional/volume/v2/test_snapshot.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/tests/functional/volume/v1/test_snapshot.py b/openstackclient/tests/functional/volume/v1/test_snapshot.py index c60472c5..083cd1b0 100644 --- a/openstackclient/tests/functional/volume/v1/test_snapshot.py +++ b/openstackclient/tests/functional/volume/v1/test_snapshot.py @@ -42,7 +42,7 @@ class VolumeSnapshotTests(common.BaseVolumeTests): finally: super(VolumeSnapshotTests, cls).tearDownClass() - def test_volume_snapshot__delete(self): + def test_volume_snapshot_delete(self): """Test create, delete multiple""" name1 = uuid.uuid4().hex cmd_output = json.loads(self.openstack( diff --git a/openstackclient/tests/functional/volume/v2/test_snapshot.py b/openstackclient/tests/functional/volume/v2/test_snapshot.py index ba6b2c28..264f4adb 100644 --- a/openstackclient/tests/functional/volume/v2/test_snapshot.py +++ b/openstackclient/tests/functional/volume/v2/test_snapshot.py @@ -43,7 +43,7 @@ class VolumeSnapshotTests(common.BaseVolumeTests): finally: super(VolumeSnapshotTests, cls).tearDownClass() - def test_volume_snapshot__delete(self): + def test_volume_snapshot_delete(self): """Test create, delete multiple""" name1 = uuid.uuid4().hex cmd_output = json.loads(self.openstack( |
