Skip to content

Commit

Permalink
Upgrade to PHPUnit 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Willem Stuursma committed Oct 2, 2018
1 parent 04c1b24 commit f0ca5b4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@
"league/oauth2-client": "^2.2",
"mediact/dependency-guard": "^1.0",
"phpstan/phpstan": "^0.10.1",
"phpunit/phpunit": "^6.5"
"phpunit/phpunit": "^7.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ public function testXmlIsCreatedPerSpec()
<transactions>
<transaction autobalancevat="true" destiny="temporary">
<header>
<office>dev-10000</office>
<currency>eur</currency>
<office>DEV-10000</office>
<currency>EUR</currency>
<startvalue>0.00</startvalue>
<closevalue>0.21</closevalue>
</header>
Expand All @@ -96,7 +96,7 @@ public function testXmlIsCreatedPerSpec()
<debitcredit>debit</debitcredit>
<value>1.00</value>
<destoffice>DEV-11000</destoffice>
<comment>lorem ipsum dolor sit amet, consectetur adipiscing elit. suspendisse facilisis lobortis arcu in tincidunt. mauris urna enim, commodo nec feugiat quis, pharetra vel sem. etiam ullamcorper eleifend tellus non viverra. nulla facilisi. donec sed orci aliquam.</comment>
<comment>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse facilisis lobortis arcu in tincidunt. Mauris urna enim, commodo nec feugiat quis, pharetra vel sem. Etiam ullamcorper eleifend tellus non viverra. Nulla facilisi. Donec sed orci aliquam.</comment>
</line>
<line id="38864" type="vat">
<debitcredit>credit</debitcredit>
Expand Down
2 changes: 1 addition & 1 deletion tests/UnitTests/DomDocuments/CustomersDocumentUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function testXmlIsCreatedPerSpec()

$customer = new Customer();
$customer->setCode('D654321');
$customer->setName('Nuck CHorris');
$customer->setName('Nuck Chorris');
$customer->setWebsite('http://example.org');
$customer->setOffice(Office::fromCode("DEV-00001"));
$customer->setStatus('deleted');
Expand Down

0 comments on commit f0ca5b4

Please sign in to comment.