From bade7f5139efdb479acf5e0a9175cad88aeca620 Mon Sep 17 00:00:00 2001 From: TOomaAh Date: Wed, 16 Apr 2025 23:23:22 +0200 Subject: [PATCH] fix(tests): fix cypress test --- cypress/e2e/providers/tvdb.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/providers/tvdb.cy.ts b/cypress/e2e/providers/tvdb.cy.ts index 48d90895..8f8f32c5 100644 --- a/cypress/e2e/providers/tvdb.cy.ts +++ b/cypress/e2e/providers/tvdb.cy.ts @@ -84,7 +84,7 @@ describe('TVDB Integration', () => { tv: 'tvdb', }).then(({ response }) => { expect(response.statusCode).to.equal(200); - expect(response.body.tv).to.equal(false); + expect(response.body.tv).to.equal('tvdb'); }); });