From e73b913de7391f17b0846a3850c138d400cc99fe Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Tue, 2 Oct 2018 16:39:48 -0300 Subject: [PATCH] Use dedicated PHPUnit assertions (#1331) --- tests/System/LoadDataAndQueryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/System/LoadDataAndQueryTest.php b/tests/System/LoadDataAndQueryTest.php index 71b341a..d4318c0 100644 --- a/tests/System/LoadDataAndQueryTest.php +++ b/tests/System/LoadDataAndQueryTest.php @@ -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'];