diff options
Diffstat (limited to 'models/notification_test.go')
-rw-r--r-- | models/notification_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/models/notification_test.go b/models/notification_test.go index dccb478f27..57d686a474 100644 --- a/models/notification_test.go +++ b/models/notification_test.go @@ -20,6 +20,7 @@ func TestCreateOrUpdateIssueNotifications(t *testing.T) { assert.Equal(t, NotificationStatusUnread, notf.Status) notf = AssertExistsAndLoadBean(t, &Notification{UserID: 4, IssueID: issue.ID}).(*Notification) assert.Equal(t, NotificationStatusUnread, notf.Status) + CheckConsistencyFor(t, &Issue{ID: issue.ID}) } func TestNotificationsForUser(t *testing.T) { |