aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-10-26 23:14:52 -0500
committerJack Nagel2014-10-26 23:17:13 -0500
commita0b2dc515c86a51b1db441fc316e93f79b2aec41 (patch)
tree14f61a3503bd8f7d162809ce69b7e51c9ad1e02d
parent509fe80731218c0b8d49dee1d5906a54f07e13fe (diff)
downloadhomebrew-a0b2dc515c86a51b1db441fc316e93f79b2aec41.tar.bz2
Fix filename case
-rw-r--r--Library/Homebrew/test/test_patching.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Homebrew/test/test_patching.rb b/Library/Homebrew/test/test_patching.rb
index 76ed37483..e5d52dbb8 100644
--- a/Library/Homebrew/test/test_patching.rb
+++ b/Library/Homebrew/test/test_patching.rb
@@ -99,7 +99,7 @@ class PatchingTests < Homebrew::TestCase
def patches
[PATCH_URL_A]
end
- end.brew { assert_patched 'libexec/noop' }
+ end.brew { assert_patched 'libexec/NOOP' }
end
end
@@ -109,7 +109,7 @@ class PatchingTests < Homebrew::TestCase
def patches
{ :p1 => PATCH_URL_A }
end
- end.brew { assert_patched 'libexec/noop' }
+ end.brew { assert_patched 'libexec/NOOP' }
end
end
@@ -119,7 +119,7 @@ class PatchingTests < Homebrew::TestCase
def patches
{ :p1 => [PATCH_URL_A] }
end
- end.brew { assert_patched 'libexec/noop' }
+ end.brew { assert_patched 'libexec/NOOP' }
end
end
@@ -127,7 +127,7 @@ class PatchingTests < Homebrew::TestCase
shutup do
formula do
patch PATCH_A_CONTENTS
- end.brew { assert_patched 'libexec/noop' }
+ end.brew { assert_patched 'libexec/NOOP' }
end
end
@@ -135,7 +135,7 @@ class PatchingTests < Homebrew::TestCase
shutup do
formula do
patch :p0, PATCH_B_CONTENTS
- end.brew { assert_patched 'libexec/noop' }
+ end.brew { assert_patched 'libexec/NOOP' }
end
end
@@ -145,7 +145,7 @@ class PatchingTests < Homebrew::TestCase
def patches
Formula::DATA
end
- end.brew { assert_patched "libexec/noop" }
+ end.brew { assert_patched "libexec/NOOP" }
end
end
end