aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/unit/includes/user/UserTimeCorrectionTest.php
diff options
context:
space:
mode:
authorTimo Tijhof <krinkle@fastmail.com>2022-02-16 17:43:43 +0000
committerKrinkle <krinkle@fastmail.com>2022-02-18 18:32:05 +0000
commit8d406bbcd69cb50b110bd3fb0d0c9878e3b0b3be (patch)
tree562870515abca9923702fbd4ff394a69d0c19667 /tests/phpunit/unit/includes/user/UserTimeCorrectionTest.php
parent38467129b8c14acded3c3a5528c51e8f4641f25f (diff)
downloadmediawikicore-8d406bbcd69cb50b110bd3fb0d0c9878e3b0b3be.tar.gz
mediawikicore-8d406bbcd69cb50b110bd3fb0d0c9878e3b0b3be.zip
phpcs: Disable `Generic.Files.LineLength` for test files
There is a common and reasonable need for longer lines in tests. The nudge for shorter lines doesn't seem valuable here. The natural breaks will likely still fall in 80-100 given the enforced practice for non-test code, e.g. whether through habit, or 80-100 column markers in text editors, or the finite width of diff and code review interfaces. Change-Id: I879479e13551789a67624ce66f0946d2f185e6ee
Diffstat (limited to 'tests/phpunit/unit/includes/user/UserTimeCorrectionTest.php')
-rw-r--r--tests/phpunit/unit/includes/user/UserTimeCorrectionTest.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/phpunit/unit/includes/user/UserTimeCorrectionTest.php b/tests/phpunit/unit/includes/user/UserTimeCorrectionTest.php
index 1d48fd1f1979..19aca6656408 100644
--- a/tests/phpunit/unit/includes/user/UserTimeCorrectionTest.php
+++ b/tests/phpunit/unit/includes/user/UserTimeCorrectionTest.php
@@ -106,7 +106,6 @@ class UserTimeCorrectionTest extends MediaWikiUnitTestCase {
public function provideDSTVariations() {
// Amsterdam observes DST. Johannesburg does not
return [
- // phpcs:disable Generic.Files.LineLength.TooLong
[ new DateTime( '2020-12-01' ), 'ZoneInfo|60|Europe/Amsterdam', 'ZoneInfo|60|Europe/Amsterdam', true ],
[ new DateTime( '2020-12-01' ), 'ZoneInfo|120|Europe/Amsterdam', 'ZoneInfo|60|Europe/Amsterdam', true ],
[ new DateTime( '2020-12-01' ), 'ZoneInfo|120|Africa/Johannesburg', 'ZoneInfo|120|Africa/Johannesburg', true ],