fix: render expiration notifications in bell menu

This commit is contained in:
2026-07-29 12:38:36 +02:00
parent 919b2d01e5
commit 35ddffc903
3 changed files with 6 additions and 4 deletions
+2 -1
View File
@@ -189,7 +189,8 @@ class ModelTestCase(SlmBaseTestCase):
runner.run()
runner.run()
self.assertEqual(1, Notification.objects.filter(user=user, object_id=license.pk).count())
notification = Notification.objects.get(user=user, object_id=license.pk)
self.assertIsInstance(str(notification.event), str)
self.assertEqual(1, SoftwareLicenseNotificationLog.objects.filter(user=user, license=license).count())
send_mail.assert_called_once()
self.assertEqual("netbox@example.com", send_mail.call_args.args[2])