Skip to content

Commit

Permalink
Changed variable name for codacy quality review
Browse files Browse the repository at this point in the history
  • Loading branch information
ccasciotti committed Mar 5, 2019
1 parent 318425f commit 486e21c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/code/Magento/Indexer/Test/Unit/Model/IndexerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@ public function testGetLatestUpdated($getViewIsEnabled, $getViewGetUpdated, $get
}
}
} else {
$actualGetLatestUpdated = $this->model->getLatestUpdated();
$this->assertEquals($getStateGetUpdated, $actualGetLatestUpdated);
$getLatestUpdated = $this->model->getLatestUpdated();
$this->assertEquals($getStateGetUpdated, $getLatestUpdated);

if ($getStateGetUpdated === null) {
$this->assertNotNull($actualGetLatestUpdated);
$this->assertNotNull($getLatestUpdated);
}
}
}
Expand Down

0 comments on commit 486e21c

Please sign in to comment.