We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5583d96 commit 1bb1cd5Copy full SHA for 1bb1cd5
readthedocs/rtd_tests/tests/test_build_notifications.py
@@ -22,7 +22,7 @@ def setUp(self):
22
def test_send_notification_none_if_wrong_version_pk(self, mock_logger):
23
self.assertFalse(Version.objects.filter(pk=345343).exists())
24
send_notifications(version_pk=345343, build_pk=None)
25
- mock_logger.warning.assert_called_with('Version not found for the pk = 345343')
+ mock_logger.warning.assert_called_with("Version not found for given kwargs. {'pk': 345343}")
26
27
28
def test_send_notification_none(self):
0 commit comments