diff --git a/Tests/Unit/CategoryTest.php b/Tests/Unit/CategoryTest.php
index 4cbd8d601c..b838a1b4ee 100644
--- a/Tests/Unit/CategoryTest.php
+++ b/Tests/Unit/CategoryTest.php
@@ -35,7 +35,7 @@ class CategoryTest extends BaseTest
public function testACategoryCanHaveAssets()
{
- $category = Category::factory()->assetDesktopCategory()->create();
+ $category = Category::factory()->assetDesktopCategory();
// Generate 5 models via factory
$models = AssetModel::factory()
@@ -58,7 +58,7 @@ class CategoryTest extends BaseTest
]
);
- dd($asset);
+ //dd($asset);
});
$this->assertCount(5, $category->models);
diff --git a/phpunit.xml b/phpunit.xml
index bf3fd2dc33..9992302a60 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -7,7 +7,7 @@
- ./tests/
+ ./Tests/