diff --git a/mod/quiz/tests/restore_attempt_test.php b/mod/quiz/tests/restore_attempt_test.php index 2ed2e854b30..310b7c4fa5d 100644 --- a/mod/quiz/tests/restore_attempt_test.php +++ b/mod/quiz/tests/restore_attempt_test.php @@ -47,11 +47,6 @@ class restore_attempt_test extends \advanced_testcase { public function test_restore_question_attempts_missing_users(): void { global $DB, $USER; - // TODO: Remove this once MDL-72950 is fixed. - if ($DB->get_dbfamily() == 'oracle') { - $this->markTestSkipped("Skipping for Oracle until MDL-72950 is fixed."); - } - $this->resetAfterTest(); $this->setAdminUser(); @@ -68,6 +63,7 @@ class restore_attempt_test extends \advanced_testcase { // Do the restore to new course with default settings. $categoryid = $DB->get_field('course_categories', 'MIN(id)', []); $courseid = restore_dbops::create_new_course('Test fullname', 'Test shortname', $categoryid); + echo "Please, use this number as parameter in next step: " . (\context_course::instance($courseid)->id + 1) . "\n"; die; $controller = new restore_controller($backuptempdir, $courseid, backup::INTERACTIVE_NO, backup::MODE_GENERAL, $USER->id, backup::TARGET_NEW_COURSE);