Change the description string

This commit is contained in:
Oliver Davies 2020-02-09 21:38:39 +00:00
parent c983048346
commit ea2f5a4ae8
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
name = {{ name }}
description = The description for {{ name }}.
description = {{ name }} module.
core = 7.x

View file

@ -69,7 +69,7 @@ final class GenerateDrupal7ModuleCommandTest extends TestCase
$contents = file_get_contents('test_module/test_module.info');
$this->assertStringContainsString('name = Test Module', $contents);
$this->assertStringContainsString('description = The description for Test Module.', $contents);
$this->assertStringContainsString('description = Test Module module.', $contents);
}
/** @test */