From 1a99dc647fd407f443238d10f9a721c8d887074f Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 8 Jun 2022 14:58:34 +0200 Subject: Fix search index tests --- server/tests/api/search/search-index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'server') diff --git a/server/tests/api/search/search-index.ts b/server/tests/api/search/search-index.ts index 287abe455..53b91e1cb 100644 --- a/server/tests/api/search/search-index.ts +++ b/server/tests/api/search/search-index.ts @@ -136,14 +136,14 @@ describe('Test index search', function () { expect(video.account.url).to.equal('https://framatube.org/accounts/framasoft') // TODO: remove, deprecated in 4.2 expect(video.account.avatar).to.exist - expect(video.account.avatars.length).to.equal(1, 'Account should have one avatar image') + expect(video.account.avatars.length).to.equal(2, 'Account should have one avatar image') expect(video.channel.host).to.equal('framatube.org') expect(video.channel.name).to.equal('joinpeertube') expect(video.channel.url).to.equal('https://framatube.org/video-channels/joinpeertube') // TODO: remove, deprecated in 4.2 expect(video.channel.avatar).to.exist - expect(video.channel.avatars.length).to.equal(1, 'Channel should have one avatar image') + expect(video.channel.avatars.length).to.equal(2, 'Channel should have one avatar image') } const baseSearch: VideosSearchQuery = { @@ -322,7 +322,7 @@ describe('Test index search', function () { expect(videoChannel.host).to.equal('framatube.org') // TODO: remove, deprecated in 4.2 expect(videoChannel.avatar).to.exist - expect(videoChannel.avatars.length).to.equal(1, 'Channel should have two avatar images') + expect(videoChannel.avatars.length).to.equal(2, 'Channel should have two avatar images') expect(videoChannel.displayName).to.exist expect(videoChannel.ownerAccount.url).to.equal('https://framatube.org/accounts/framasoft') @@ -330,7 +330,7 @@ describe('Test index search', function () { expect(videoChannel.ownerAccount.host).to.equal('framatube.org') // TODO: remove, deprecated in 4.2 expect(videoChannel.ownerAccount.avatar).to.exist - expect(videoChannel.ownerAccount.avatars.length).to.equal(1, 'Account should have two avatar images') + expect(videoChannel.ownerAccount.avatars.length).to.equal(2, 'Account should have two avatar images') } it('Should make a simple search and not have results', async function () { -- cgit v1.2.3