Index: trunk/phase3/tests/phpunit/includes/filerepo/StoreBatchTest.php |
— | — | @@ -18,12 +18,12 @@ |
19 | 19 | $useConfig = $conf; |
20 | 20 | } |
21 | 21 | } |
22 | | - $useConfig['name'] = 'localtesting'; // swap name |
23 | | - $class = $conf['class']; |
24 | | - self::$backendToUse = new $class( $useConfig ); |
| 22 | + $useConfig['name'] = 'local-testing'; // swap name |
| 23 | + $class = $useConfig['class']; |
| 24 | + $backend = new $class( $useConfig ); |
25 | 25 | } else { |
26 | 26 | $backend = new FSFileBackend( array( |
27 | | - 'name' => 'local-backend', |
| 27 | + 'name' => 'local-testing', |
28 | 28 | 'lockManager' => 'nullLockManager', |
29 | 29 | 'containerPaths' => array( |
30 | 30 | 'unittests-public' => "{$tmpPrefix}-public", |