diff options
Diffstat (limited to 'models/action_test.go')
-rw-r--r-- | models/action_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/models/action_test.go b/models/action_test.go index debc884b37..96ee9a5f73 100644 --- a/models/action_test.go +++ b/models/action_test.go @@ -310,6 +310,7 @@ func TestGetFeeds(t *testing.T) { RequestingUserID: user.ID, IncludePrivate: true, OnlyPerformedBy: false, + IncludeDeleted: true, }) assert.NoError(t, err) assert.Len(t, actions, 1) @@ -337,6 +338,7 @@ func TestGetFeeds2(t *testing.T) { RequestingUserID: userID, IncludePrivate: true, OnlyPerformedBy: false, + IncludeDeleted: true, }) assert.NoError(t, err) assert.Len(t, actions, 1) @@ -348,6 +350,7 @@ func TestGetFeeds2(t *testing.T) { RequestingUserID: userID, IncludePrivate: false, OnlyPerformedBy: false, + IncludeDeleted: true, }) assert.NoError(t, err) assert.Len(t, actions, 0) |