diff options
| author | Jim Rollenhagen <jim@jimrollenhagen.com> | 2016-07-07 15:17:31 -0400 |
|---|---|---|
| committer | Jim Rollenhagen <jim@jimrollenhagen.com> | 2016-07-14 14:37:02 -0400 |
| commit | 2e10d7b32cc32a2d367bbd38ec612fd283aaac8e (patch) | |
| tree | 036ae817b7aed5e5c43b2770787849c29a48c132 /ironic_python_agent/tests/functional/base.py | |
| parent | b139dccf3c7886942b99fd6a77d1d4c1cadb91a9 (diff) | |
| download | ironic-python-agent-2e10d7b32cc32a2d367bbd38ec612fd283aaac8e.tar.gz | |
Fix doc warnings
Per Doug's email[0], 'warnerrors' in setup.cfg hasn't actually been
working for some time now, and we've piled up a few warnings. Fix these
before a pbr release to unbreak it gets pushed out and breaks our doc
builds.
[0] http://lists.openstack.org/pipermail/openstack-dev/2016-June/097849.html
Change-Id: I6576a56234918febb21e7e4860544eb952123c09
Diffstat (limited to 'ironic_python_agent/tests/functional/base.py')
| -rw-r--r-- | ironic_python_agent/tests/functional/base.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ironic_python_agent/tests/functional/base.py b/ironic_python_agent/tests/functional/base.py index b47ecdf0..5267eb62 100644 --- a/ironic_python_agent/tests/functional/base.py +++ b/ironic_python_agent/tests/functional/base.py @@ -71,13 +71,13 @@ class FunctionalBase(test_base.BaseTestCase): **kwargs): """Send a request to the agent and verifies response. - :param: method type of request to send as a string - :param: path desired API endpoint to request, for example 'commands' - :param: expect_error error code to expect, if an error is expected - :param: expect_json whether to expect a JSON response. if True, convert + :param method: type of request to send as a string + :param path: desired API endpoint to request, for example 'commands' + :param expect_error: error code to expect, if an error is expected + :param expect_json: whether to expect a JSON response. if True, convert it to a dict before returning, otherwise return the Response object - :param **kwargs: keyword args to pass to the request method + :param kwargs: keyword args to pass to the request method :raises: HTTPError if an error is returned that was not expected :raises: AssertionError if a received HTTP status code does not match expect_error |
