From 9314b890f6bc8e7eee7fa939f791d9b489ad17d7 Mon Sep 17 00:00:00 2001 From: Owen Barton Date: Mon, 5 Nov 2012 19:27:31 -0800 Subject: [PATCH] Fix directory path for completetest commandfile. --- tests/completeTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/completeTest.php b/tests/completeTest.php index 668a15aeb9..fec064bfdb 100644 --- a/tests/completeTest.php +++ b/tests/completeTest.php @@ -23,7 +23,7 @@ public function testComplete() { // We copy our completetest commandfile into our path. // We cannot use --include since complete deliberately avoids drush // command dispatch. - copy(dirname(__FILE__) . '/completetest.drush.inc', UNISH_CACHE . "/completetest.drush.inc"); + copy(dirname(__FILE__) . '/completetest.drush.inc', getenv('HOME') . '/.drush/completetest.drush.inc'); $sites = $this->setUpDrupal(2); $env = key($sites);