Skip to content

Commit

Permalink
Merge branch '6.5' into 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed May 23, 2018
2 parents 3f836cf + 5635f85 commit aa1862e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/Framework/Constraint/IsEqual.php
Expand Up @@ -49,11 +49,6 @@ class IsEqual extends Constraint
*/
private $ignoreCase = false;

/**
* @var SebastianBergmann\Comparator\ComparisonFailure
*/
private $lastFailure;

public function __construct($value, float $delta = 0.0, int $maxDepth = 10, bool $canonicalize = false, bool $ignoreCase = false)
{
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Framework/TestCase.php
Expand Up @@ -221,7 +221,7 @@ abstract class TestCase extends Assert implements Test, SelfDescribing
private $outputBufferingLevel;

/**
* @var SebastianBergmann\GlobalState\Snapshot
* @var Snapshot
*/
private $snapshot;

Expand Down
3 changes: 2 additions & 1 deletion src/TextUI/TestRunner.php
Expand Up @@ -48,6 +48,7 @@
use SebastianBergmann\CodeCoverage\Report\PHP as PhpReport;
use SebastianBergmann\CodeCoverage\Report\Text as TextReport;
use SebastianBergmann\CodeCoverage\Report\Xml\Facade as XmlReport;
use SebastianBergmann\Comparator\Comparator;
use SebastianBergmann\Environment\Runtime;

/**
Expand Down Expand Up @@ -405,7 +406,7 @@ public function doRun(Test $suite, array $arguments = [], bool $exit = true): Te
);

$codeCoverage->setUnintentionallyCoveredSubclassesWhitelist(
[SebastianBergmann\Comparator\Comparator::class]
[Comparator::class]
);

$codeCoverage->setCheckForUnintentionallyCoveredCode(
Expand Down

0 comments on commit aa1862e

Please sign in to comment.