From d714ce54b56941e8815935fcba90e2e1cb1cf469 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Thu, 1 Aug 2013 19:24:50 +0530 Subject: [PATCH] CLOUDSTACK-3921: Don't change order of params in PublicIpAddress.create() Or existing tests that depend on the order barf and fail. Signed-off-by: Prasanna Santhanam (cherry picked from commit ec054cde23113baa40ae35c6195bc666d3c1b8d0) --- tools/marvin/marvin/integration/lib/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/marvin/marvin/integration/lib/base.py b/tools/marvin/marvin/integration/lib/base.py index bbf8440f725..2a2c65b4127 100755 --- a/tools/marvin/marvin/integration/lib/base.py +++ b/tools/marvin/marvin/integration/lib/base.py @@ -1073,8 +1073,8 @@ class PublicIPAddress: self.__dict__.update(items) @classmethod - def create(cls, apiclient, accountid=None, zoneid=None, domainid=None, - isportable=None, services=None, networkid=None, projectid=None, vpcid=None): + def create(cls, apiclient, accountid=None, zoneid=None, domainid=None, services=None, + networkid=None, projectid=None, vpcid=None, isportable=None): """Associate Public IP address""" cmd = associateIpAddress.associateIpAddressCmd()