Skip to content

Commit

Permalink
Quieten tests. (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
reivilibre authored Aug 19, 2020
1 parent 77338ee commit 1a6ead7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/149.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove a source of nuisance, noisy (but otherwise harmless) exceptions in tests.
4 changes: 2 additions & 2 deletions tests/test_apns.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_payload_truncation(self):
"""
# Arrange
method = self.apns_pushkin_snotif
method.return_value = testutils.make_async_magic_mock(
method.side_effect = testutils.make_async_magic_mock(
NotificationResult("notID", "200")
)
self.sygnal.pushkins[PUSHKIN_ID].MAX_JSON_BODY_SIZE = 240
Expand All @@ -91,7 +91,7 @@ def test_payload_truncation_test_validity(self):
"""
# Arrange
method = self.apns_pushkin_snotif
method.return_value = testutils.make_async_magic_mock(
method.side_effect = testutils.make_async_magic_mock(
NotificationResult("notID", "200")
)
self.sygnal.pushkins[PUSHKIN_ID].MAX_JSON_BODY_SIZE = 4096
Expand Down

0 comments on commit 1a6ead7

Please sign in to comment.