atomicparsley: fix test on a case-sensitive file system (#26042)

This commit is contained in:
Michka Popoff 2018-04-02 16:11:48 +02:00 committed by ilovezfs
parent 30b33ff53f
commit a545e6cb46

View file

@ -38,8 +38,8 @@ class Atomicparsley < Formula
test do
cp test_fixtures("test.m4a"), testpath/"file.m4a"
system "#{bin}/atomicparsley", testpath/"file.m4a", "--artist", "Homebrew", "--overWrite"
output = shell_output("#{bin}/atomicparsley file.m4a --textdata")
system "#{bin}/AtomicParsley", testpath/"file.m4a", "--artist", "Homebrew", "--overWrite"
output = shell_output("#{bin}/AtomicParsley file.m4a --textdata")
assert_match "Homebrew", output
end
end