From 1a775ebc764ede02add7fe64a653c0c11fb5776b Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Fri, 4 Oct 2019 16:27:06 -0400 Subject: [PATCH] tests(error_reporting): increase 'max_tries'. Closes #6987. --- error_reporting/tests/system/test_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/error_reporting/tests/system/test_system.py b/error_reporting/tests/system/test_system.py index b72223e2ae0a..cf454aecdbd1 100644 --- a/error_reporting/tests/system/test_system.py +++ b/error_reporting/tests/system/test_system.py @@ -117,7 +117,7 @@ def test_report_exception(self): is_one = functools.partial(operator.eq, 1) is_one.__name__ = "is_one" # partial() has no name. - retry = RetryResult(is_one, max_tries=6) + retry = RetryResult(is_one, max_tries=8) wrapped_get_count = retry(_get_error_count) error_count = wrapped_get_count(class_name, Config.CLIENT)