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
commita5b9c90f79d9c52d33e696c2db6c42aef1b46b67 (patch)
tree0d021079b15c84748d3ac7dd9fe4e1b03a99dbeb /Library/Homebrew/test/test_patching.rb
parentbb29d1630b434533280f9aef6b274fccd8b7791e (diff)
downloadhomebrew-a5b9c90f79d9c52d33e696c2db6c42aef1b46b67.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