diff --git a/tests/locallib_test.php b/tests/locallib_test.php index 92bd0704..8c37a341 100644 --- a/tests/locallib_test.php +++ b/tests/locallib_test.php @@ -37,28 +37,28 @@ public static function local_codechecker_find_other_files_provider(): array { 'ignores' => [], 'extensions' => $defaultextensions, 'matches' => [\moodle_exception::class], - 'notmatches' => [], + 'nomatches' => [], ], 'one wrong dir' => [ 'path' => 'local/codechecker/nononotests/', 'ignores' => [], 'extensions' => $defaultextensions, 'matches' => [\moodle_exception::class], - 'notmatches' => [], + 'nomatches' => [], ], 'one file' => [ 'path' => 'local/codechecker/tests/locallib_test.php', 'ignores' => [], 'extensions' => $defaultextensions, 'matches' => [], - 'notmatches' => [], + 'nomatches' => [], ], 'one php file' => [ 'path' => 'local/codechecker/tests/locallib_test.php', 'ignores' => [], 'extensions' => ['php'], 'matches' => ['local/codechecker/tests/locallib_test.php'], - 'notmatches' => [], + 'nomatches' => [], ], 'one dir' => [ 'path' => 'local/codechecker/tests',