Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed May 16, 2020
1 parent 68764da commit 20d0021
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/tests/PHPTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public function testPHPSerialisationProducesValidCode(): void
{
$coverage = $this->getCoverageForBankAccount();

(new PHP())->process($coverage, self::$TEST_TMP_PATH . '/serialised.php');
(new PHP())->process($coverage, self::$TEST_TMP_PATH . '/serialized.php');

$unserialised = require self::$TEST_TMP_PATH . '/serialised.php';
$unserialized = require self::$TEST_TMP_PATH . '/serialized.php';

$this->assertEquals($coverage, $unserialised);
$this->assertEquals($coverage, $unserialized);
}
}

0 comments on commit 20d0021

Please sign in to comment.