Fix filename case

This commit is contained in:
Jack Nagel 2014-10-26 23:14:52 -05:00
parent b5d96a80bf
commit 56aec9494c

View File

@ -99,7 +99,7 @@ class PatchingTests < Homebrew::TestCase
def patches def patches
[PATCH_URL_A] [PATCH_URL_A]
end end
end.brew { assert_patched 'libexec/noop' } end.brew { assert_patched 'libexec/NOOP' }
end end
end end
@ -109,7 +109,7 @@ class PatchingTests < Homebrew::TestCase
def patches def patches
{ :p1 => PATCH_URL_A } { :p1 => PATCH_URL_A }
end end
end.brew { assert_patched 'libexec/noop' } end.brew { assert_patched 'libexec/NOOP' }
end end
end end
@ -119,7 +119,7 @@ class PatchingTests < Homebrew::TestCase
def patches def patches
{ :p1 => [PATCH_URL_A] } { :p1 => [PATCH_URL_A] }
end end
end.brew { assert_patched 'libexec/noop' } end.brew { assert_patched 'libexec/NOOP' }
end end
end end
@ -127,7 +127,7 @@ class PatchingTests < Homebrew::TestCase
shutup do shutup do
formula do formula do
patch PATCH_A_CONTENTS patch PATCH_A_CONTENTS
end.brew { assert_patched 'libexec/noop' } end.brew { assert_patched 'libexec/NOOP' }
end end
end end
@ -135,7 +135,7 @@ class PatchingTests < Homebrew::TestCase
shutup do shutup do
formula do formula do
patch :p0, PATCH_B_CONTENTS patch :p0, PATCH_B_CONTENTS
end.brew { assert_patched 'libexec/noop' } end.brew { assert_patched 'libexec/NOOP' }
end end
end end
@ -145,7 +145,7 @@ class PatchingTests < Homebrew::TestCase
def patches def patches
Formula::DATA Formula::DATA
end end
end.brew { assert_patched "libexec/noop" } end.brew { assert_patched "libexec/NOOP" }
end end
end end
end end