summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Harney <eharney@redhat.com>2022-11-18 10:12:38 -0500
committerEric Harney <eharney@redhat.com>2023-02-21 12:43:54 +0000
commit7fcb8bbc8794238bf2d4fb2339395651342ec8a2 (patch)
tree71027b1ccff53fa5d094fa05d7c0a43fb1af9abd
parenta92aa06e463f6322e8abdc2f570a801ea82dd1cb (diff)
downloadcinder-7fcb8bbc8794238bf2d4fb2339395651342ec8a2.tar.gz
Tests: Fix typo'd unit test name
"snpashots" -> "snapshots" to make it easier to find this unit test. Change-Id: I9a8bcb68f2c6f9a85b862e7bbb5dbf5a65486ae4
-rw-r--r--cinder/tests/unit/api/v2/test_snapshots.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cinder/tests/unit/api/v2/test_snapshots.py b/cinder/tests/unit/api/v2/test_snapshots.py
index ce58abb40..d85ae2d33 100644
--- a/cinder/tests/unit/api/v2/test_snapshots.py
+++ b/cinder/tests/unit/api/v2/test_snapshots.py
@@ -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."""