-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from uc-cdis/fix/error
fix(error): inherit Exception
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1279,8 +1279,9 @@ def test_handled_exception_no_retry(test_cloud_manager): | |
test_cloud_manager.add_member_to_group( | ||
member_email="[email protected]", group_id="abc" | ||
) | ||
assert logger_warn.call_count <= BACKOFF_SETTINGS["max_tries"] - 1 | ||
assert logger_error.call_count <= 1 | ||
assert logger_warn.call_count == 0 | ||
# two google api calls: get_group_members and add_member_to_group | ||
assert logger_error.call_count >= 1 | ||
|
||
|
||
def test_handled_exception_403_no_retry(test_cloud_manager): | ||
|