Problem/Motivation
When running tests we got an error:
Drupal\Core\Config\Schema\SchemaIncompleteException: Schema errors for cl_components.settings with the following errors: cl_components.settings:debug variable type is string but applied schema class is Drupal\Core\TypedData\Plugin\DataType\BooleanData
It is because of the extra character ';' at the end of first line of cl_components.settings.yml file.
debug: false;
Steps to reproduce
Run a test involving this module.
Proposed resolution
Delete the extra ";" character
Remaining tasks
User interface changes
API changes
Data model changes
Issue fork cl_components-3314075
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
immaculatexavier commentedCommitted in accordance to the proposed resolution
Comment #5
e0ipsoThis looks good! Thanks for the fix.