Skip to content

Commit

Permalink
Merge pull request #12 from JoepRoebroek/patch-1
Browse files Browse the repository at this point in the history
Apply speedup to fixtures with no records as well
  • Loading branch information
dakota committed Aug 13, 2018
2 parents 406c1ff + e5f15d2 commit 12d5be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestSuite/Fixture/ChecksumTestFixture.php
Expand Up @@ -86,7 +86,7 @@ public function drop(ConnectionInterface $db)
protected function _tableUnmodified($db)
{
$tableKey = $this->_getTableKey();
if (empty(static::$_tableHashes[$tableKey])) {
if (!array_key_exists($this->table, static::$_tableHashes)) {
return false;
}

Expand Down

0 comments on commit 12d5be4

Please sign in to comment.