Tests: Fix typo'd unit test name

"snpashots" -> "snapshots" to make it easier to
find this unit test.

Change-Id: I9a8bcb68f2c6f9a85b862e7bbb5dbf5a65486ae4
This commit is contained in:
Eric Harney 2022-11-18 10:12:38 -05:00
parent a92aa06e46
commit 7fcb8bbc87

@ -528,7 +528,7 @@ class SnapshotApiTest(test.TestCase):
@mock.patch.object(db, 'snapshot_get_all_by_project')
@mock.patch('cinder.db.snapshot_metadata_get', return_value=dict())
def test_list_snpashots_with_wrong_limit_and_offset(self,
def test_list_snapshots_with_wrong_limit_and_offset(self,
mock_metadata_get,
mock_snapshot_get_all):
"""Test list with negative and non numeric limit and offset."""