Skip to content

Commit

Permalink
#1251 Fix class reference
Browse files Browse the repository at this point in the history
  • Loading branch information
j3nsch committed Oct 30, 2024
1 parent d0f3556 commit d01ed2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/library/Application/ModulesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function testGetModules()

foreach ($expectedModules as $name) {
$this->assertArrayHasKey($name, $modules, "Module [$name] is missing");
$this->assertInstanceOf('Application_Configuration_Module', $modules[$name]);
$this->assertInstanceOf(Module::class, $modules[$name]);
}
}

Expand Down

0 comments on commit d01ed2a

Please sign in to comment.