interval param should be set to None by default

Change-Id: Ie864187bae3ee5abc7802861dbd3c85eabb55904
Closes-bug: #1602613
This commit is contained in:
David TARDIVEL 2016-09-19 09:33:08 +02:00
parent ba108ed37e
commit a270d72038
2 changed files with 3 additions and 4 deletions

View File

@ -65,7 +65,7 @@ class Audit(base.APIDictWrapper):
@classmethod
def create(cls, request, audit_template_uuid,
audit_type, deadline, interval):
audit_type, deadline, interval=None):
"""Create an audit in Watcher
@ -81,7 +81,7 @@ class Audit(base.APIDictWrapper):
:param deadline: audit deadline:
:type deadline: string
:param interval: Audit interval
:param interval: Audit interval (default: None)
:type interval: int
:return: the created Audit object

View File

@ -212,7 +212,6 @@ class WatcherAPITests(test.APITestCase):
deadline = self.api_audits.first()['deadline']
audit_type = self.api_audits.first()['audit_type']
interval = audit['interval']
audit_template_uuid = audit_template_id
watcherclient = self.stub_watcherclient()
@ -224,7 +223,7 @@ class WatcherAPITests(test.APITestCase):
self.mox.ReplayAll()
ret_val = api.watcher.Audit.create(
self.request, audit_template_uuid, audit_type, deadline, interval)
self.request, audit_template_uuid, audit_type, deadline)
self.assertIsInstance(ret_val, dict)
def test_audit_create_with_interval(self):