Fix test_limits functional test failure

Change d7b393d449 introduced a failure to
the functional tests. The Limits.get method override didn't get the
requires_id argument added. This change adds it and allows the tests to
pass.

Change-Id: I3d8c5e77d73b76fdf288eabfecfb8d6104a3887e
This commit is contained in:
Brian Curtin 2016-07-20 17:26:48 -04:00
parent 8e52197bdf
commit 2d5b82e884
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class Limits(resource2.Resource):
absolute = resource2.Body("absolute", type=AbsoluteLimits)
rate = resource2.Body("rate", type=list)
def get(self, session):
def get(self, session, requires_id=False):
"""Get the Limits resource.
:param session: The session to use for making this request.