Skip to content

Commit 7924508

Browse files
authored
tests(error_reporting): increase 'max_tries'. (#9396)
Closes #6987
1 parent 0518ddf commit 7924508

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

error_reporting/tests/system/test_system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_report_exception(self):
117117

118118
is_one = functools.partial(operator.eq, 1)
119119
is_one.__name__ = "is_one" # partial() has no name.
120-
retry = RetryResult(is_one, max_tries=6)
120+
retry = RetryResult(is_one, max_tries=8)
121121
wrapped_get_count = retry(_get_error_count)
122122

123123
error_count = wrapped_get_count(class_name, Config.CLIENT)

0 commit comments

Comments
 (0)