Skip to content

Commit a5c22fe

Browse files
committed
Merged branch '4.6' into main
2 parents e43388f + 5129983 commit a5c22fe

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/backend-ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,13 @@ jobs:
212212
VERSION=$(jq -r '.extra | ."branch-alias" | ."dev-main"' < composer.json)
213213
composer require --no-update "ibexa/solr:$VERSION"
214214
215-
- uses: ramsey/composer-install@v3
215+
- name: Install Composer dependencies
216+
uses: ibexa/gh-workflows/actions/composer-install@main
216217
with:
217-
dependency-versions: "highest"
218+
gh-client-id: ${{ secrets.AUTOMATION_CLIENT_ID }}
219+
gh-client-secret: ${{ secrets.AUTOMATION_CLIENT_SECRET }}
220+
satis-network-key: ${{ secrets.SATIS_NETWORK_KEY }}
221+
satis-network-token: ${{ secrets.SATIS_NETWORK_TOKEN }}
218222

219223
- name: Run integration test suite
220224
run: composer test-integration-solr

tests/integration/Core/Repository/SearchService/Aggregation/Field/CountryTermAggregationTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ protected function createFixturesForAggregation(Aggregation $aggregation): void
104104
$generator->setFieldDefinitionIdentifier('country');
105105
$generator->setFieldTypeIdentifier('ibexa_country');
106106
$generator->setValues([
107-
['PL', 'US'],
108-
['FR', 'US'],
109-
['US'],
107+
['PL', 'CA'],
108+
['FR', 'CA'],
109+
['CA'],
110110
['GA', 'PL', 'FR'],
111-
['FR', 'BE', 'US'],
111+
['FR', 'BE', 'CA'],
112112
]);
113113

114114
$generator->setFieldDefinitionCreateStructConfigurator(

0 commit comments

Comments
 (0)