From 0d58754ec683f3f6b4a0056154ce60a00fa50381 Mon Sep 17 00:00:00 2001 From: Scott Taubman <86254668+scott-taubman@users.noreply.github.com> Date: Wed, 14 Jul 2021 11:31:28 -0400 Subject: [PATCH] #334 - Updating sphinx generated docs --- CONTRIBUTING.rst | 2 +- brewtils/test/comparable.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 93b648c7..eeeff9c8 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -100,7 +100,7 @@ Before you submit a pull request, check that it meets these guidelines: 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. -3. The pull request should work for Python 2.7 and 3.5+. Check +3. The pull request should work for Python 2.7 and 3.6+. Check https://github.com/beer-garden/brewtils/pulls and make sure that the tests pass for all supported Python versions. diff --git a/brewtils/test/comparable.py b/brewtils/test/comparable.py index 57c509fe..5cce8aa9 100644 --- a/brewtils/test/comparable.py +++ b/brewtils/test/comparable.py @@ -169,7 +169,7 @@ def _assert_wrapper(obj1, obj2, expected_type=None, do_raise=False, **kwargs): """ try: - _assert_equal(obj1, obj2, expected_type, **kwargs) + _assert_equal(obj1, obj2, expected_type=expected_type, **kwargs) except AssertionError: if do_raise or hasattr(brewtils.test, "_running_tests"): raise