summaryrefslogtreecommitdiff
path: root/tests/app/Services/ModuleServiceTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Services/ModuleServiceTest.php')
-rw-r--r--tests/app/Services/ModuleServiceTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/app/Services/ModuleServiceTest.php b/tests/app/Services/ModuleServiceTest.php
index 29c55c17f5..bbc99d90a1 100644
--- a/tests/app/Services/ModuleServiceTest.php
+++ b/tests/app/Services/ModuleServiceTest.php
@@ -107,17 +107,17 @@ class ModuleServiceTest extends TestCase
}
/**
- * @covers \Fisharebest\Webtrees\Services\ModuleService::configOnlyModules
+ * @covers \Fisharebest\Webtrees\Services\ModuleService::otherModules
* @return void
*/
- public function testOtherOnlyModules(): void
+ public function testOtherModules(): void
{
app()->instance(Tree::class, Tree::create('name', 'title'));
DB::table('module')->insert(['module_name' => 'not-a-module']);
$module_service = new ModuleService();
- $this->assertSame(4, $module_service->otherModules()->count());
+ $this->assertSame(5, $module_service->otherModules()->count());
}
/**