Skip to content

Commit

Permalink
removed 10.1 from tests. Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed Jul 22, 2024
1 parent faa9bb3 commit b9fb352
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/jump-start-config-sets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: drupal/drupal
ref: 10.2.x
ref: 10.3.x
path: drupal

- name: Checkout search_api_solr
Expand Down Expand Up @@ -163,9 +163,9 @@ jobs:

strategy:
matrix:
drupal: ['10.1', '10.2']
drupal: ['10.2', '10.3']
solr: ['4', '5', '6', '7', '8', '9']
php: ['8.1', '8.2']
php: ['8.2']
solarium: ['solarium/solarium:"dev-master as 6.3.99"']
experimental: [false]
include:
Expand All @@ -174,16 +174,11 @@ jobs:
php: '8.3'
solarium: 'solarium/solarium'
experimental: true
- drupal: '10.3'
solr: '9'
php: '8.2'
solarium: 'solarium/solarium'
experimental: true
- drupal: '10.3'
solr: '9'
php: '8.3'
solarium: 'solarium/solarium'
experimental: true
experimental: false

name: Drupal ${{ matrix.drupal }}, Solr ${{ matrix.solr }}, PHP ${{ matrix.php }}

Expand Down Expand Up @@ -385,9 +380,9 @@ jobs:

strategy:
matrix:
drupal: ['10.1', '10.2']
drupal: ['10.2', '10.3']
solr: ['3']
php: ['8.1', '8.2']
php: ['8.2']
experimental: [false]

name: Drupal ${{ matrix.drupal }}, Solr ${{ matrix.solr }}, PHP ${{ matrix.php }}
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/search_api/processor/DoubleQuoteWorkaround.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function validateConfigurationForm(array &$form, FormStateInterface $form

$replacement = trim($form_state->getValue('replacement'));
if (mb_strlen($replacement) < 3) {
$form_state->setErrorByName('replacement', $this->t('The replacement should at least consist of three cahracters.'));
$form_state->setErrorByName('replacement', $this->t('The replacement should at least consist of three characters.'));
}
}

Expand Down

0 comments on commit b9fb352

Please sign in to comment.