mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-02 07:21:43 +01:00
Fix flaky test in /api/v2/notifications
tests (#33773)
This commit is contained in:
parent
1e70da5e3c
commit
2d545c5fe5
@ -153,7 +153,7 @@ RSpec.describe 'Notifications' do
|
||||
it 'returns a notification group covering all notifications' do
|
||||
subject
|
||||
|
||||
notification_ids = user.account.notifications.reload.pluck(:id)
|
||||
notification_ids = user.account.notifications.order(id: :asc).pluck(:id)
|
||||
|
||||
expect(response).to have_http_status(200)
|
||||
expect(response.content_type)
|
||||
@ -175,7 +175,7 @@ RSpec.describe 'Notifications' do
|
||||
it 'returns a notification group covering all notifications' do
|
||||
subject
|
||||
|
||||
notification_ids = user.account.notifications.reload.pluck(:id)
|
||||
notification_ids = user.account.notifications.order(id: :asc).pluck(:id)
|
||||
|
||||
expect(response).to have_http_status(200)
|
||||
expect(response.content_type)
|
||||
|
Loading…
x
Reference in New Issue
Block a user