Skip to content
Snippets Groups Projects
Commit 4ea529d5 authored by mondrake's avatar mondrake
Browse files

Issue #3474350 by mondrake: ArgumentCountError: Too few arguments to function...

Issue #3474350 by mondrake: ArgumentCountError: Too few arguments to function Drupal\textimage\Form\SettingsForm::__construct()
parent 35c370ab
No related branches found
No related tags found
1 merge request!14Closes #3474350
Pipeline #283099 passed with warnings
......@@ -75,7 +75,8 @@ class SettingsForm extends ConfigFormBase {
$container->get('textimage.factory'),
$container->get('config.factory'),
$container->get('plugin.manager.image_effects.font_selector'),
$container->get('image.factory')
$container->get('image.factory'),
$container->get('config.typed')
);
}
......
......@@ -176,4 +176,12 @@ class TextimageTest extends TextimageTestBase {
$this->assertDirectoryDoesNotExist('public://textimage_store/temp');
}
/**
* Test execution of Textimage settings form.
*/
public function testSettingsForm(): void {
$this->drupalGet($this->textimageAdmin);
$this->assertSession()->statusCodeEquals(200);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment