Removed outdated translations and updated tests

This commit is contained in:
Dan Brown
2017-09-09 18:41:59 +01:00
parent 0275d2ad58
commit 621142a46e
10 changed files with 74 additions and 201 deletions

View File

@ -73,11 +73,11 @@ $factory->define(BookStack\Image::class, function ($faker) {
});
$factory->define(BookStack\Comment::class, function($faker) {
$text = $faker->paragraph(3);
$text = $faker->paragraph(1);
$html = '<p>' . $text. '</p>';
return [
'html' => $html,
'text' => $text,
'active' => 1
'parent_id' => null
];
});