diff options
author | nod_ <nod_@598310.no-reply.drupal.org> | 2025-01-30 11:19:10 +0100 |
---|---|---|
committer | nod_ <nod_@598310.no-reply.drupal.org> | 2025-01-30 11:19:10 +0100 |
commit | b041cd994bd59defb992145e0fbc6e8cb4dea020 (patch) | |
tree | 99196a2ee0fcd3f2f2a9b40dcd0063866746e176 /core/modules/config | |
parent | 55fbe8acb9f41dd8ea4b076fdaf8599e5b9c8582 (diff) | |
download | drupal-b041cd994bd59defb992145e0fbc6e8cb4dea020.tar.gz drupal-b041cd994bd59defb992145e0fbc6e8cb4dea020.zip |
Issue #3497100 by quietone, smustgrave: Fix LineLength for @todo comments
Diffstat (limited to 'core/modules/config')
-rw-r--r-- | core/modules/config/tests/src/Functional/ConfigInstallWebTest.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/modules/config/tests/src/Functional/ConfigInstallWebTest.php b/core/modules/config/tests/src/Functional/ConfigInstallWebTest.php index f2089984da6..2859a4763b8 100644 --- a/core/modules/config/tests/src/Functional/ConfigInstallWebTest.php +++ b/core/modules/config/tests/src/Functional/ConfigInstallWebTest.php @@ -87,9 +87,10 @@ class ConfigInstallWebTest extends BrowserTestBase { $config_entity->set('label', 'Customized integration config label')->save(); // @todo FIXME: Setting config keys WITHOUT SAVING retains the changed config - // object in memory. Every new call to $this->config() MUST revert in-memory changes - // that haven't been saved! - // In other words: This test passes even without this reset, but it shouldn't. + // object in memory. Every new call to $this->config() MUST revert + // in-memory changes that haven't been saved! + // In other words: This test passes even without this reset, but it + // shouldn't. $this->container->get('config.factory')->reset(); // Disable and uninstall the integration module. |