aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Afanasjew2016-07-28 22:09:07 +0200
committerMartin Afanasjew2016-07-28 22:09:07 +0200
commit12413cb760a85acbc4296983259e5c16869e472e (patch)
tree2106fead2ab509ab5c3942bd7e41139e866cb9dc
parent97b6a3069ea909d2dc6987f49f3e47eeda7054b1 (diff)
downloadbrew-12413cb760a85acbc4296983259e5c16869e472e.tar.bz2
tests: fix duplicate test case class name
Rename test case class to avoid two definitions of `BlacklistTests`.
-rw-r--r--Library/Homebrew/test/test_os_mac_blacklist.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_os_mac_blacklist.rb b/Library/Homebrew/test/test_os_mac_blacklist.rb
index e5becc9d2..26dd84ed9 100644
--- a/Library/Homebrew/test/test_os_mac_blacklist.rb
+++ b/Library/Homebrew/test/test_os_mac_blacklist.rb
@@ -1,7 +1,7 @@
require "testing_env"
require "blacklist"
-class BlacklistTests < Homebrew::TestCase
+class OSMacBlacklistTests < Homebrew::TestCase
def assert_blacklisted(s)
assert blacklisted?(s), "'#{s}' should be blacklisted"
end