Skip to content

Commit

Permalink
Update ConsistencyTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto-butti committed Sep 6, 2020
1 parent 5463c79 commit d46c2e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ConsistencyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -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()
Expand Down

0 comments on commit d46c2e5

Please sign in to comment.