Skip to content

Commit

Permalink
Merge branch 'MDL-82787-403' of https://github.com/andrewnicols/moodle
Browse files Browse the repository at this point in the history
…into MOODLE_403_STABLE
  • Loading branch information
snake committed Aug 23, 2024
2 parents f308827 + 2af12db commit 6bc54e8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ public function stop(): void {
parent::stop();
} catch (DriverException $e) {
error_log($e->getMessage());
$this->webDriver = null;
$rcp = new \ReflectionProperty(parent::class, 'webDriver');
$rcp->setValue($this, null);
}
}
}

0 comments on commit 6bc54e8

Please sign in to comment.