From 91e461798039f796d8df808adfe8ea7dfc21cdfa Mon Sep 17 00:00:00 2001 From: Dick van der Heiden Date: Fri, 20 May 2022 19:38:49 +0200 Subject: [PATCH] Update TimeTest.php --- tests/Unit/TimeTest.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/Unit/TimeTest.php b/tests/Unit/TimeTest.php index acd67f4..7d810b6 100644 --- a/tests/Unit/TimeTest.php +++ b/tests/Unit/TimeTest.php @@ -33,13 +33,6 @@ public function testGetters(): void $this->assertSame($seconds, $time->getSeconds()); } - public function testSetHoursException(): void - { - $this->expectException(TimeException::class); - - $time = new Time(30); - } - public function testSetMinutesException(): void { $this->expectException(TimeException::class);