From b9ddbad71a972a7ccafcab7ca1465ba9136cc274 Mon Sep 17 00:00:00 2001 From: Nicolas Widart Date: Mon, 21 Dec 2015 11:47:23 +0100 Subject: [PATCH] Prefix with the configured assets path --- Tests/ImagyTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/ImagyTest.php b/Tests/ImagyTest.php index 38c13ace..489fa203 100644 --- a/Tests/ImagyTest.php +++ b/Tests/ImagyTest.php @@ -69,7 +69,7 @@ public function it_should_return_thumbnail_path() { $path = $this->imagy->getThumbnail("{$this->mediaPath}google-map.png", 'smallThumb'); - $expected = 'google-map_smallThumb.png'; + $expected = config('asgard.media.config.files-path') . 'google-map_smallThumb.png'; $this->assertEquals($expected, $path); }