Fix a typo in functional helper class

This was a typo (by me) in the original implementation, but since
nothing was testing DELETE calls, it was never noticed.

Change-Id: I81f9d0a53493a1b9793bdaae082093f30df6e032
This commit is contained in:
Dan Smith
2021-01-13 09:50:10 -08:00
parent f32d39230d
commit 4d9c7b573e

View File

@@ -1683,7 +1683,7 @@ class SynchronousAPIBase(test_utils.BaseTestCase):
:param headers: Optional updates to the default set of headers
:returns: A webob.Response object
"""
return self.api_request('DELETE', url, heaers=headers)
return self.api_request('DELETE', url, headers=headers)
def _import_copy(self, image_id, stores):
"""Do an import of image_id to the given stores."""