diff --git a/tests/Unit/DateTimeTest.php b/tests/Unit/DateTimeTest.php deleted file mode 100644 index 6f9021e62..000000000 --- a/tests/Unit/DateTimeTest.php +++ /dev/null @@ -1,32 +0,0 @@ -assertEquals(9, $ts->month); - $this->assertEquals(16, $ts->day); - $this->assertEquals(2019, $ts->year); - $this->assertEquals(2, $ts->hour); - $this->assertEquals(41, $ts->minute); - } - - /** @test */ - public function p3kTimestamp() - { - $ts = Carbon::createFromFormat(DateTime::ISO8601, '2019-09-16T08:40:55+10:00'); - $this->assertEquals(9, $ts->month); - $this->assertEquals(16, $ts->day); - $this->assertEquals(2019, $ts->year); - $this->assertEquals(8, $ts->hour); - $this->assertEquals(40, $ts->minute); - } -} diff --git a/tests/Unit/SnowflakeTest.php b/tests/Unit/SnowflakeTest.php deleted file mode 100644 index 76544261c..000000000 --- a/tests/Unit/SnowflakeTest.php +++ /dev/null @@ -1,16 +0,0 @@ -assertEquals($expected, $actual); - } -}