diff --git a/src/stubs/database/factories/model-factory.stub b/src/stubs/database/factories/model-factory.stub index 304dafd..c4c5caf 100644 --- a/src/stubs/database/factories/model-factory.stub +++ b/src/stubs/database/factories/model-factory.stub @@ -20,4 +20,4 @@ class MasterFactory extends Factory }, ]; } -} \ No newline at end of file +} diff --git a/tests/Generators/ModelFactoryGeneratorTest.php b/tests/Generators/ModelFactoryGeneratorTest.php index eb9e362..19b9e40 100644 --- a/tests/Generators/ModelFactoryGeneratorTest.php +++ b/tests/Generators/ModelFactoryGeneratorTest.php @@ -35,7 +35,8 @@ class {$this->model_name}Factory extends Factory }, ]; } -}"; +} +"; $this->assertEquals($modelFactoryContent, file_get_contents($modelFactoryPath)); } }