Skip to content

Commit

Permalink
Merge pull request #269 from sabre-io/dependabot/github_actions/codec…
Browse files Browse the repository at this point in the history
…ov/codecov-action-4

Bump codecov/codecov-action from 3 to 4
  • Loading branch information
phil-davis authored Feb 1, 2024
2 parents 8ec6586 + de64e39 commit 5f2ccfa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ jobs:
run: vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover clover.xml

- name: Code Coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: matrix.coverage != 'none'
4 changes: 2 additions & 2 deletions tests/Sabre/Xml/ServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public function testMapValueObject(): void
XML;

$ns = 'http://sabredav.org/ns';
$orderService = new \Sabre\Xml\Service();
$orderService = new Service();
$orderService->mapValueObject('{'.$ns.'}order', 'Sabre\Xml\Order');
$orderService->mapValueObject('{'.$ns.'}status', 'Sabre\Xml\OrderStatus');
$orderService->namespaceMap[$ns] = null;
Expand Down Expand Up @@ -323,7 +323,7 @@ public function testMapValueObjectArrayProperty(): void
XML;

$ns = 'http://sabredav.org/ns';
$orderService = new \Sabre\Xml\Service();
$orderService = new Service();
$orderService->mapValueObject('{'.$ns.'}order', 'Sabre\Xml\Order');
$orderService->mapValueObject('{'.$ns.'}status', 'Sabre\Xml\OrderStatus');
$orderService->namespaceMap[$ns] = null;
Expand Down

0 comments on commit 5f2ccfa

Please sign in to comment.