Skip to content

Commit

Permalink
Fix test warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
liulka-oxid committed Sep 23, 2024
1 parent 6f647e3 commit b983bec
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/composer.lock
/vendor
.idea
.phpunit.result.cache
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ private function getOrderStub(): Order
$orderStub = oxNew(Order::class);
$orderStub->oxorder__oxbillfname = new Field('Some first name');
$orderStub->oxorder__oxbilllname = new Field('Some last name');
$orderStub->oxorder__oxbillemail->value = new Field('[email protected]');

return $orderStub;
}
Expand Down
2 changes: 0 additions & 2 deletions tests/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
bootstrap="./tests/bootstrap.php"
cacheDirectory="./var/.phpunit.cache"
beStrictAboutOutputDuringTests="false"
requireCoverageMetadata="false"
beStrictAboutCoverageMetadata="true"
Expand Down

0 comments on commit b983bec

Please sign in to comment.