Merge pull request #27179 from y-yagi/follow_up_to_8e1714b

use correct variable in BacktraceCleaner test
This commit is contained in:
Matthew Draper 2016-11-26 12:51:06 +10:30 committed by GitHub
commit c2f4a200e2
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class BacktraceCleanerTest < ActiveSupport::TestCase
test "should format installed gems not in Gem.default_dir correctly" do
target_dir = Gem.path.detect { |p| p != Gem.default_dir }
# skip this test if default_dir is the only directory on Gem.path
if @target_dir
if target_dir
backtrace = [ "#{target_dir}/gems/nosuchgem-1.2.3/lib/foo.rb" ]
result = @cleaner.clean(backtrace, :all)
assert_equal "nosuchgem (1.2.3) lib/foo.rb", result[0]