From d6f12e685a4770135832bca260ce1d6ea4e4a88a Mon Sep 17 00:00:00 2001 From: Jakub Szymanowski Date: Fri, 8 Oct 2021 14:27:33 +0200 Subject: [PATCH] Fix assertion message --- tests/PeselValidationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PeselValidationTest.php b/tests/PeselValidationTest.php index 12f3125..296e92c 100644 --- a/tests/PeselValidationTest.php +++ b/tests/PeselValidationTest.php @@ -26,7 +26,7 @@ public function testHasBirthDateReturnsCorrectValue(Pesel $pesel, string $birthD $this->assertEquals( $isCorrect, $actual, - "Invalid gender. Got $actualStr, expected $isCorrectStr for number $pesel" + "Invalid birth date. Got $actualStr, expected $isCorrectStr for number $pesel" ); }