X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fparser%2FparserTest.inc;h=05a6f154260779fc1e58445634f7310af3373535;hb=82f2fcfb125a091cf97ead05bb0e7c485c559ec5;hp=db3c84acf86676f07aa5397577044fa2f99b789c;hpb=1c4587aabfc7e6d00171062214f5887f0e8d7ede;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/parser/parserTest.inc b/tests/parser/parserTest.inc index db3c84acf8..05a6f15426 100644 --- a/tests/parser/parserTest.inc +++ b/tests/parser/parserTest.inc @@ -155,6 +155,9 @@ class ParserTest { 'name' => 'fsLockManager', 'class' => 'FSLockManager', 'lockDirectory' => wfTempDir() . '/test-repo/lockdir', + ), array( + 'name' => 'nullLockManager', + 'class' => 'NullLockManager', ) ); $wgLocalFileRepo = array( 'class' => 'LocalRepo', @@ -634,11 +637,14 @@ class ParserTest { 'wgScriptPath' => '/', 'wgArticlePath' => '/wiki/$1', 'wgActionPaths' => array(), - 'wgLockManagers' => array( + 'wgLockManagers' => array( array( 'name' => 'fsLockManager', 'class' => 'FSLockManager', 'lockDirectory' => $this->uploadDir . '/lockdir', - ), + ), array( + 'name' => 'nullLockManager', + 'class' => 'NullLockManager', + ) ), 'wgLocalFileRepo' => array( 'class' => 'LocalRepo', 'name' => 'local',