X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2Fsession%2FSessionManagerTest.php;h=3b4009ee966964c709860cfdedbd7d0afabb2255;hb=17d8a57bde68073290f4b548ad28658181a11d0e;hp=b2f525d741b3158da111db9b276c70ec8a3c24c0;hpb=a1ef77b2d80830fbcb617a83961d78cff9d6e384;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/session/SessionManagerTest.php b/tests/phpunit/includes/session/SessionManagerTest.php index b2f525d741..3b4009ee96 100644 --- a/tests/phpunit/includes/session/SessionManagerTest.php +++ b/tests/phpunit/includes/session/SessionManagerTest.php @@ -34,7 +34,9 @@ class SessionManagerTest extends MediaWikiTestCase { ] ] ); $this->logger = new \TestLogger( false, function ( $m ) { - return substr( $m, 0, 15 ) === 'SessionBackend ' ? null : $m; + return ( strpos( $m, 'SessionBackend ' ) === 0 + || strpos( $m, 'SessionManager using store ' ) === 0 + ) ? null : $m; } ); $this->store = new TestBagOStuff();