Skip to content

Commit 1ea988e

Browse files
Zuulopenstack-gerrit
authored andcommitted
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."
2 parents 462a087 + 811b001 commit 1ea988e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

openstackclient/tests/functional/volume/v1/test_snapshot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def tearDownClass(cls):
4242
finally:
4343
super(VolumeSnapshotTests, cls).tearDownClass()
4444

45-
def test_volume_snapshot__delete(self):
45+
def test_volume_snapshot_delete(self):
4646
"""Test create, delete multiple"""
4747
name1 = uuid.uuid4().hex
4848
cmd_output = json.loads(self.openstack(

openstackclient/tests/functional/volume/v2/test_snapshot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def tearDownClass(cls):
4343
finally:
4444
super(VolumeSnapshotTests, cls).tearDownClass()
4545

46-
def test_volume_snapshot__delete(self):
46+
def test_volume_snapshot_delete(self):
4747
"""Test create, delete multiple"""
4848
name1 = uuid.uuid4().hex
4949
cmd_output = json.loads(self.openstack(

0 commit comments

Comments
 (0)