From d46c2e508cc00214beab54a6f6ddfcdd606b991b Mon Sep 17 00:00:00 2001 From: Roberto B Date: Sun, 6 Sep 2020 20:32:44 +0200 Subject: [PATCH] Update ConsistencyTest.php --- tests/ConsistencyTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ConsistencyTest.php b/tests/ConsistencyTest.php index cc370e5..d01db81 100644 --- a/tests/ConsistencyTest.php +++ b/tests/ConsistencyTest.php @@ -21,7 +21,7 @@ public function test_config_array() $l = new LaraLens(); $a = $l->getConfigs(); $this->assertIsArray($a->toArray()); - $this->assertEquals(12, count($a->toArray())); + $this->assertCount(12, $a->toArray()); } /** @test */ @@ -30,7 +30,7 @@ public function test_runtimeconfig_array() $l = new LaraLens(); $a = $l->getRuntimeConfigs(); $this->assertIsArray($a->toArray()); - $this->assertEquals(20, count($a->toArray())); + $this->assertCount(20, $a->toArray()); } /** @test */ public function test_database_array()