Skip to content

Commit

Permalink
MBS-8974: Make unit tests final
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-csg committed Mar 26, 2024
1 parent 39efcb6 commit 3b6f646
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/boardmanager_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @covers \mod_kanban\boardmanager
*/
class boardmanager_test extends \advanced_testcase {
final class boardmanager_test extends \advanced_testcase {
/** @var \stdClass The course used for testing */
private $course;
/** @var \stdClass The kanban used for testing */
Expand Down
2 changes: 1 addition & 1 deletion tests/change_kanban_content_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @covers \mod_kanban\external\change_kanban_content
* @runTestsInSeparateProcesses
*/
class change_kanban_content_test extends \advanced_testcase {
final class change_kanban_content_test extends \advanced_testcase {
/** @var \stdClass The course used for testing */
private $course;
/** @var \stdClass The kanban used for testing */
Expand Down
2 changes: 1 addition & 1 deletion tests/generation_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @covers \mod_kanban_generator
*/
class generation_test extends \advanced_testcase {
final class generation_test extends \advanced_testcase {
/**
* Tests the data generator for this module
*
Expand Down
2 changes: 1 addition & 1 deletion tests/task/reminder_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @covers \mod_kanban\task\reminder
*/
class reminder_test extends \advanced_testcase {
final class reminder_test extends \advanced_testcase {
/** @var \stdClass The course used for testing */
private $course;
/** @var \stdClass The kanban used for testing */
Expand Down

0 comments on commit 3b6f646

Please sign in to comment.