1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Merge fixes from branch 'v0.12'

This commit is contained in:
Dan Brown
2016-11-12 11:40:54 +00:00
13 changed files with 115 additions and 6 deletions

View File

@ -57,7 +57,7 @@ class ImageTest extends TestCase
$relPath = $this->uploadImage($imageName, $page->id);
$this->assertResponseOk();
$this->assertTrue(file_exists(public_path($relPath)), 'Uploaded image exists');
$this->assertTrue(file_exists(public_path($relPath)), 'Uploaded image not found at path: '. public_path($relPath));
$this->deleteImage($relPath);
@ -70,7 +70,6 @@ class ImageTest extends TestCase
'updated_by' => $admin->id,
'name' => $imageName
]);
}