From 8f3d0d3bbba704bbf61df12d580866c6ca5eebdb Mon Sep 17 00:00:00 2001 From: levente Date: Wed, 8 Nov 2023 20:56:54 +0200 Subject: [PATCH] @releng - fixing test after AEM docker image update --- .circleci/ci/it-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/ci/it-tests.js b/.circleci/ci/it-tests.js index 5d0a0c3d..dab953e9 100644 --- a/.circleci/ci/it-tests.js +++ b/.circleci/ci/it-tests.js @@ -106,7 +106,7 @@ try { // Run integration tests if (TYPE === 'integration') { - let excludedCategory = classifier === 'classic' ? 'com.venia.it.category.IgnoreOn65' : 'com.venia.it.category.IgnoreOnCloud'; + let excludedCategory = classifier === 'classic' ? 'com.venia.it.category.IgnoreOnCloud' : 'com.venia.it.category.IgnoreOn65'; ci.dir('it.tests', () => { ci.sh(`mvn clean verify -U -B -Plocal -Dexclude.category=${excludedCategory}`); // The -Plocal profile comes from the AEM archetype });