Skip to content

Commit

Permalink
Merge pull request #872 from henriyli/fix-865
Browse files Browse the repository at this point in the history
Fix #865: By upgrading PHPUnit version to 7.5.10
  • Loading branch information
joelit authored May 14, 2019
2 parents 6eac649 + 0ae779a commit 068d34f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"grimmlink/qtip2": "3.0.3"
},
"require-dev": {
"phpunit/phpunit": "4.8 - 6.5.5",
"phpunit/phpunit": "4.8 - 7.5.10",
"umpirsky/twig-gettext-extractor": "1.3.*",
"symfony/dom-crawler": "3.4.3",
"mockery/mockery": "1.0"
Expand Down
8 changes: 4 additions & 4 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<phpunit colors="true" bootstrap="tests/bootstrap.php" processIsolation="true">
<logging>
<log type="coverage-html" target="./report" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-html" target="./report" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<testsuites>
Expand All @@ -9,13 +9,13 @@
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>vendor</directory>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">controller</directory>
<directory suffix=".php">model</directory>
<directory suffix=".php">model/sparql</directory>
<exclude>
<directory>vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
2 changes: 1 addition & 1 deletion tests/VocabularyConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public function testGetMainConceptSchemeURI() {
$vocab = $this->model->getVocabulary('testdiff');
$this->assertEquals('http://www.skosmos.skos/testdiff#conceptscheme' , $vocab->getConfig()->getMainConceptSchemeURI());
$vocab = $this->model->getVocabulary('test');
$this->assertNull(null , $vocab->getConfig()->getMainConceptSchemeURI());
$this->assertNull($vocab->getConfig()->getMainConceptSchemeURI());
}

/**
Expand Down

0 comments on commit 068d34f

Please sign in to comment.