diff options
author | Brad Jorsch <bjorsch@wikimedia.org> | 2020-02-06 15:24:56 -0500 |
---|---|---|
committer | Krinkle <krinklemail@gmail.com> | 2020-02-07 19:44:57 +0000 |
commit | 036cde7a04c06536fdfe2d8073dab654db02e559 (patch) | |
tree | 846401776488830b1fc1f449c4e6dc49b6031269 /tests/phpunit/includes/resourceloader/ResourceLoaderStartUpModuleTest.php | |
parent | 43d4d098c6bc2161e04e431839496190823a9578 (diff) | |
download | mediawikicore-036cde7a04c06536fdfe2d8073dab654db02e559.tar.gz mediawikicore-036cde7a04c06536fdfe2d8073dab654db02e559.zip |
resourceloader: Move site-level mw.config from startup to mediawiki.base
This data isn't needed for startup, and we can shave off a few K from
startup by moving it to mediawiki.base instead.
It was requested that this be done as a "package file", which
necessitated some other minor structural changes to mediawiki.base as
well.
Bug: T235350
Change-Id: I525a5203533089d5a542f83a847be58a10cb6319
Diffstat (limited to 'tests/phpunit/includes/resourceloader/ResourceLoaderStartUpModuleTest.php')
-rw-r--r-- | tests/phpunit/includes/resourceloader/ResourceLoaderStartUpModuleTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/includes/resourceloader/ResourceLoaderStartUpModuleTest.php b/tests/phpunit/includes/resourceloader/ResourceLoaderStartUpModuleTest.php index 0c3512ada662..9cc56b29892f 100644 --- a/tests/phpunit/includes/resourceloader/ResourceLoaderStartUpModuleTest.php +++ b/tests/phpunit/includes/resourceloader/ResourceLoaderStartUpModuleTest.php @@ -799,10 +799,10 @@ mw.loader.register([ 'Deterministic version hash' ); - $this->assertNotEquals( + $this->assertEquals( $version1, $version3, - 'Config change impacts version hash' + 'Config change no longer impacts version hash' ); } |