- Issue created by @Andras_Szilagyi
- 🇷🇴Romania Andras_Szilagyi
tests fail with the issue reported https://git.drupalcode.org/issue/message_digest-3477172/-/jobs/2875429
After investigating I found that the move from message_digest_ui/message_digest_ui.module to message_digest.module of message_digest_allowed_values_callback was done without importing the DigestInterface. This causes the validity of the notifier plugin to fail and thus the daily, weekly and email plugins are not loaded into the select.
Open message_digest.module, `use Drupal\message_digest\Plugin\Notifier\DigestInterface;` should be present but is not.
alter MessageDigestIntervalFormTest to cover existing plugins and add `use Drupal\message_digest\Plugin\Notifier\DigestInterface;` to the .module
Active
1.0
Code
tests fail with the issue reported https://git.drupalcode.org/issue/message_digest-3477172/-/jobs/2875429