Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeyroik committed Apr 26, 2020
1 parent 8b23863 commit 650a714
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/TraitsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,6 @@ public function testHasUpdatedAt()

$test->setUpdatedAt(new \DateTime(date('Y/m/d H:i:s', $now)));
$this->assertEquals(date($format, $now), $test->getUpdatedAt($format));

$test->setUpdatedAt(date('Y/m/d H:i:s', $now));
$this->assertEquals(date($format, $now), $test->getUpdatedAt($format));
}

public function testHasCreatedAt()
Expand All @@ -226,9 +223,6 @@ public function testHasCreatedAt()

$test->setCreatedAt(new \DateTime(date('Y/m/d H:i:s', $now)));
$this->assertEquals(date($format, $now), $test->getCreatedAt($format));

$test->setCreatedAt(date('Y/m/d H:i:s', $now));
$this->assertEquals(date($format, $now), $test->getCreatedAt($format));
}

public function testHasAliases()
Expand Down

0 comments on commit 650a714

Please sign in to comment.