From 12413cb760a85acbc4296983259e5c16869e472e Mon Sep 17 00:00:00 2001 From: Martin Afanasjew Date: Thu, 28 Jul 2016 22:09:07 +0200 Subject: [PATCH] tests: fix duplicate test case class name Rename test case class to avoid two definitions of `BlacklistTests`. --- Library/Homebrew/test/test_os_mac_blacklist.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/test_os_mac_blacklist.rb b/Library/Homebrew/test/test_os_mac_blacklist.rb index e5becc9d22..26dd84ed9f 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