aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_patching.rb
diff options
context:
space:
mode:
authorJack Nagel2014-06-10 21:49:41 -0500
committerJack Nagel2014-06-10 21:49:41 -0500
commit0505582507116134020afe34adcd2e740ae44f22 (patch)
treeb99f919734a8d84968110d9a0f999d64a0bfc671 /Library/Homebrew/test/test_patching.rb
parentdbe82909a30bde3e785d806fe0dad93e96c00d71 (diff)
downloadbrew-0505582507116134020afe34adcd2e740ae44f22.tar.bz2
Rename TEST_FOLDER to TEST_DIRECTORY
Diffstat (limited to 'Library/Homebrew/test/test_patching.rb')
-rw-r--r--Library/Homebrew/test/test_patching.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/test/test_patching.rb b/Library/Homebrew/test/test_patching.rb
index 285094ad5..381b7ce4f 100644
--- a/Library/Homebrew/test/test_patching.rb
+++ b/Library/Homebrew/test/test_patching.rb
@@ -3,12 +3,12 @@ require 'formula'
require 'testball'
class PatchingTests < Test::Unit::TestCase
- PATCH_URL_A = "file:///#{TEST_FOLDER}/patches/noop-a.diff"
- PATCH_URL_B = "file:///#{TEST_FOLDER}/patches/noop-b.diff"
+ PATCH_URL_A = "file:///#{TEST_DIRECTORY}/patches/noop-a.diff"
+ PATCH_URL_B = "file:///#{TEST_DIRECTORY}/patches/noop-b.diff"
def formula(&block)
super do
- url "file:///#{TEST_FOLDER}/tarballs/testball-0.1.tbz"
+ url "file:///#{TEST_DIRECTORY}/tarballs/testball-0.1.tbz"
sha1 "482e737739d946b7c8cbaf127d9ee9c148b999f5"
class_eval(&block)
end