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