From: Amir E. Aharoni Date: Wed, 30 Sep 2015 07:55:19 +0000 (+0300) Subject: Make lines short to pass phpcs in BagOStuffTest.php X-Git-Tag: 1.31.0-rc.0~9634 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=b59ad5811be75fc28fc2454e53c39bdc81d9c754;p=lhc%2Fweb%2Fwiklou.git Make lines short to pass phpcs in BagOStuffTest.php Bug: T102614 Change-Id: I125cf7ec294818ae4c7741acf24a40980448daa9 --- diff --git a/tests/phpunit/includes/objectcache/BagOStuffTest.php b/tests/phpunit/includes/objectcache/BagOStuffTest.php index cde7ed680e..dbccd28a20 100644 --- a/tests/phpunit/includes/objectcache/BagOStuffTest.php +++ b/tests/phpunit/includes/objectcache/BagOStuffTest.php @@ -143,8 +143,11 @@ class BagOStuffTest extends MediaWikiTestCase { $key1 = wfMemcKey( 'test1' ); $key2 = wfMemcKey( 'test2' ); - $key3 = wfMemcKey( 'will-%-encode' ); // internally, MemcachedBagOStuffs will encode to will-%25-encode - $key4 = wfMemcKey( 'flowdb:flow_ref:wiki:by-source:v3:Parser\'s_"broken"_+_(page)_&_grill:testwiki:1:4.7' ); + // internally, MemcachedBagOStuffs will encode to will-%25-encode + $key3 = wfMemcKey( 'will-%-encode' ); + $key4 = wfMemcKey( + 'flowdb:flow_ref:wiki:by-source:v3:Parser\'s_"broken"_+_(page)_&_grill:testwiki:1:4.7' + ); $this->cache->add( $key1, $value1 ); $this->cache->add( $key2, $value2 );