diff options
author | Alex Pott <alex.a.pott@googlemail.com> | 2025-04-26 11:21:30 +0100 |
---|---|---|
committer | Alex Pott <alex.a.pott@googlemail.com> | 2025-04-26 11:21:30 +0100 |
commit | 7da6cdbf80052c4cc725c5759d70159aea0e484d (patch) | |
tree | 9a3f4720e9030bbce4aff223d4094c1f473e4242 /core/modules | |
parent | a31529786b6ba22e06e0999ae03f791d7ce43091 (diff) | |
download | drupal-7da6cdbf80052c4cc725c5759d70159aea0e484d.tar.gz drupal-7da6cdbf80052c4cc725c5759d70159aea0e484d.zip |
Issue #3519804 by mondrake, kim.pepper, alexpott: DummyMimeTypeMapLoadedSubscriber does not get registered
Diffstat (limited to 'core/modules')
-rw-r--r-- | core/modules/file/tests/file_test/file_test.services.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/modules/file/tests/file_test/file_test.services.yml b/core/modules/file/tests/file_test/file_test.services.yml index 095f9e42c0c..5408a295c7b 100644 --- a/core/modules/file/tests/file_test/file_test.services.yml +++ b/core/modules/file/tests/file_test/file_test.services.yml @@ -1,4 +1,6 @@ services: + _defaults: + autoconfigure: true stream_wrapper.dummy_readonly: class: Drupal\file_test\StreamWrapper\DummyReadOnlyStreamWrapper tags: @@ -22,4 +24,3 @@ services: - { name: stream_wrapper, scheme: dummy2 } Drupal\file_test\EventSubscriber\DummyMimeTypeMapLoadedSubscriber: autowire: true - public: false |