From 2af0021c2bda81d72bff13d4516b0de6d75a6c11 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Sun, 30 Oct 2016 12:58:01 +0000 Subject: [PATCH] Fixed image tests after amends to url system --- tests/ImageTest.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/ImageTest.php b/tests/ImageTest.php index 806a36acc..23373419f 100644 --- a/tests/ImageTest.php +++ b/tests/ImageTest.php @@ -57,10 +57,12 @@ 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); $this->seeInDatabase('images', [ - 'url' => $relPath, + 'url' => url($relPath), 'type' => 'gallery', 'uploaded_to' => $page->id, 'path' => $relPath, @@ -68,8 +70,7 @@ class ImageTest extends TestCase 'updated_by' => $admin->id, 'name' => $imageName ]); - - $this->deleteImage($relPath); + } public function test_image_delete()