From da0ed4158d256c7054691b270274fd3a52b03dd3 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 10 May 2016 15:47:15 -0500 Subject: [PATCH] fix bug --- tests/CaddyTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CaddyTest.php b/tests/CaddyTest.php index 4196626..cae0835 100644 --- a/tests/CaddyTest.php +++ b/tests/CaddyTest.php @@ -27,7 +27,7 @@ public function test_install_caddy_file_places_stub_in_valet_home_directory() $files->shouldReceive('putAsUser')->andReturnUsing(function ($path, $contents) { $this->assertEquals(VALET_HOME_PATH.'/Caddyfile', $path); - $this->assertTrue(strpos($contents, 'import '.VALET_HOME_PATH.'/.valet/Caddy/*') !== false); + $this->assertTrue(strpos($contents, 'import '.VALET_HOME_PATH.'/Caddy/*') !== false); }); swap(Filesystem::class, $files);