Skip to content

Commit

Permalink
Use dedicated PHPUnit assertions (#1331)
Browse files Browse the repository at this point in the history
  • Loading branch information
carusogabriel authored and dwsupplee committed Oct 2, 2018
1 parent c8620f3 commit e73b913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/System/LoadDataAndQueryTest.php
Expand Up @@ -76,7 +76,7 @@ public function testInsertRowToTable()
$actualRow = $rows[0];

$this->assertTrue($insertResponse->isSuccessful());
$this->assertEquals(self::$expectedRows, count($rows));
$this->assertCount(self::$expectedRows, $rows);

$expectedRow = $this->row;
$expectedBytes = $expectedRow['Spells'][0]['Icon'];
Expand Down

0 comments on commit e73b913

Please sign in to comment.