summaryrefslogtreecommitdiff
path: root/ironic/drivers/base.py
diff options
context:
space:
mode:
authorYolanda Robla <yroblamo@redhat.com>2018-05-31 12:50:06 +0200
committerYolanda Robla <yroblamo@redhat.com>2018-06-04 12:17:36 +0200
commit4bc142e0dc6edf56d7d88943b41b73d4f5a1fe46 (patch)
tree9fd7566e416456a498946e1eb2ac210cbd996ee2 /ironic/drivers/base.py
parent01ae88db376311d3bc44fc3f5d26064eeebc22e7 (diff)
downloadironic-4bc142e0dc6edf56d7d88943b41b73d4f5a1fe46.tar.gz
Fix FakeBIOS to allow tempest testing
In order to start tempest testing using FakeBIOS, we need to fix some issues, like enabling it on the fake driver, and add the clean_steps decorators. Change-Id: I7c47187b823c3a0ce1784849d401bd6baafe2542
Diffstat (limited to 'ironic/drivers/base.py')
-rw-r--r--ironic/drivers/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/drivers/base.py b/ironic/drivers/base.py
index 697128a8f..b317262cd 100644
--- a/ironic/drivers/base.py
+++ b/ironic/drivers/base.py
@@ -937,7 +937,7 @@ class BIOSInterface(BaseInterface):
def wrapper(func):
@six.wraps(func)
- def wrapped(self, task, *args, **kwargs):
+ def wrapped(task, *args, **kwargs):
func(task, *args, **kwargs)
instance.cache_bios_settings(task)
return wrapped