Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreAOE committed Apr 9, 2024
1 parent 86ec2bc commit a83a57b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
if: matrix.typo3 == '^11.5' && matrix.php == '8.3'
run: |
export "UNIT_XML"=.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests-v10.xml
.Build/bin/phpunit --whitelist Classes --coverage-clover=unittest-coverage.clover --colors -c $UNIT_XML Tests/Unit/
.Build/bin/phpunit --coverage-filter Classes --coverage-clover=unittest-coverage.clover --colors -c $UNIT_XML Tests/Unit/
- name: Upload coverage results to Scrutinizer
if: matrix.typo3 == '^11.5' && matrix.php == '7.4'
Expand Down
4 changes: 2 additions & 2 deletions Classes/Typo3/RefIndex.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ protected function updateTable(string $tableName): void
->select('uid')
->from($tableName)
->execute()
->fetchAllAssociative();
->fetchAll(FetchMode::ASSOCIATIVE);

// Update refindex table for all records in table
foreach ($allRecs as $recdat) {
Expand Down Expand Up @@ -186,7 +186,7 @@ protected function getDeletableRecUidListFromTable(string $tableName): array

$allRecs = $queryBuilder
->execute()
->fetchAllAssociative();
->fetchAll(FetchMode::ASSOCIATIVE);

$recUidList = [0];
foreach ($allRecs as $recdat) {
Expand Down

0 comments on commit a83a57b

Please sign in to comment.