From c40d745a3af70c648c13afe42ddf0961ffcdc4c0 Mon Sep 17 00:00:00 2001 From: Nybkox Date: Thu, 6 Feb 2025 09:43:46 +0100 Subject: [PATCH] fix: update deploy databse skip tests conditions --- integration-tests/__tests__/deploy-database.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/__tests__/deploy-database.spec.js b/integration-tests/__tests__/deploy-database.spec.js index 0528c79d1..219a7f676 100644 --- a/integration-tests/__tests__/deploy-database.spec.js +++ b/integration-tests/__tests__/deploy-database.spec.js @@ -466,7 +466,7 @@ describe('Deploy database', () => { test.each( engines .filter(i => !i.skipDeploy) - .filter(x => !x.skipChangeColumn || x.skipNullability) + .filter(x => !x.skipChangeColumn && !x.skipNullability) .map(engine => [engine.label, engine]) )( 'Change column to NOT NULL column with default - %s',