diff options
Diffstat (limited to 'Library/Homebrew/test')
| -rw-r--r-- | Library/Homebrew/test/test_formula.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/test/test_versions.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/test_formula.rb b/Library/Homebrew/test/test_formula.rb index 50176a967..36a243db2 100644 --- a/Library/Homebrew/test/test_formula.rb +++ b/Library/Homebrew/test/test_formula.rb @@ -54,7 +54,7 @@ class FormulaTests < Test::Unit::TestCase HOMEBREW_CACHE.mkpath unless HOMEBREW_CACHE.exist? nostdout do f = TestBallWithMirror.new - tarball, downloader = f.fetch + _, downloader = f.fetch assert_equal f.url, "file:///#{TEST_FOLDER}/bad_url/testball-0.1.tbz" assert_equal downloader.url, "file:///#{TEST_FOLDER}/tarballs/testball-0.1.tbz" end diff --git a/Library/Homebrew/test/test_versions.rb b/Library/Homebrew/test/test_versions.rb index 01b2eb2a2..53361c358 100644 --- a/Library/Homebrew/test/test_versions.rb +++ b/Library/Homebrew/test/test_versions.rb @@ -60,7 +60,7 @@ class VersionParsingTests < Test::Unit::TestCase end def test_bad_version - assert_raises(RuntimeError) { f = TestBadVersion.new } + assert_raises(RuntimeError) { TestBadVersion.new } end def test_version_all_dots |
