diff options
Diffstat (limited to 'tests/app')
| -rw-r--r-- | tests/app/Services/ModuleServiceTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/app/Services/ModuleServiceTest.php b/tests/app/Services/ModuleServiceTest.php index d4588f3726..0278bca847 100644 --- a/tests/app/Services/ModuleServiceTest.php +++ b/tests/app/Services/ModuleServiceTest.php @@ -105,7 +105,7 @@ class ModuleServiceTest extends TestCase $this->assertNotEmpty($module_service->findByInterface(ModuleThemeInterface::class)->all()); // Search for an invalid module type - $this->assertNull($module_service->findByInterface('not-a-valid-class-or-interface')); + $this->assertEmpty($module_service->findByInterface('not-a-valid-class-or-interface')->all()); } /** |
