From 4d9c7b573ee2dc75fcf393ddab0a66fcd0a470b9 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Wed, 13 Jan 2021 09:50:10 -0800 Subject: [PATCH] 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 --- glance/tests/functional/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glance/tests/functional/__init__.py b/glance/tests/functional/__init__.py index 042f9ca7ee..e27d896d3e 100644 --- a/glance/tests/functional/__init__.py +++ b/glance/tests/functional/__init__.py @@ -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."""