Skip to content

Commit

Permalink
amended LpaTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Lbagg1 committed Nov 15, 2023
1 parent cb27503 commit 9c51cee
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@ public function can_get_data_array_and_time(): void
/** @test */
public function can_get_null_data_array_and_null_time(): void
{
$lpa = new Lpa([], null);
$lpa = new Lpa([], new DateTime());

$this->assertNull($lpa->getData());
$this->assertNull($lpa->getLookupTime());
$this->assertEmpty($lpa->getData());
$this->assertInstanceOf(DateTime::class, $lpa->getLookupTime());
}

}

0 comments on commit 9c51cee

Please sign in to comment.