-
Bug
-
Resolution: Not a bug
-
Minor
-
None
-
4.5.2
-
MOODLE_405_STABLE
Following simple test is failing in Moodle 4.5
/** |
* Test chat activity generator.
|
*/
|
public function test_export_generator(): void { |
$this->resetAfterTest(); |
$generator = $this->getDataGenerator(); |
|
$course = $generator->create_course(); |
$chat = $generator->create_module('chat', ['course' => $course]); |
|
$modinfo = get_fast_modinfo($course); |
|
$this->assertCount(1, $modinfo->get_cms()); |
}
|
All others core activity types seem to be ok.
- mentioned in
-
Page Loading...