Change Module to have createdAt field

This commit is contained in:
Austen McDonald
2016-05-13 20:50:27 -07:00
parent 6988c3bd7a
commit f06299cc7f
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ class ModuleTest extends ModelTestCase
$scene = $em->getRepository(Module::class)->find('lotgd/test');
$this->assertEquals("lotgd/test", $scene->getLibrary());
$this->assertEquals(new \DateTime('2016-05-01'), $scene->getCreated());
$this->assertEquals(new \DateTime('2016-05-01'), $scene->getCreatedAt());
$em->flush();
}