mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 09:10:25 +08:00
FIX: counting invites didn't work
PostgreSQL reported the following error: "for SELECT DISTINCT, ORDER BY expressions must appear in select list"
This commit is contained in:
parent
ba2209f7d7
commit
4be8f17e66
2 changed files with 6 additions and 2 deletions
|
@ -402,6 +402,8 @@ describe Invite do
|
|||
|
||||
expect(invites.length).to eq(1)
|
||||
expect(invites.first).to eq pending_invite
|
||||
|
||||
expect(Invite.find_pending_invites_count(inviter)).to eq(1)
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -426,6 +428,8 @@ describe Invite do
|
|||
|
||||
expect(invites.length).to eq(1)
|
||||
expect(invites.first).to eq redeemed_invite
|
||||
|
||||
expect(Invite.find_redeemed_invites_count(inviter)).to eq(1)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue