Skip to content

Commit

Permalink
[Spec] Rename local var 'ref' to 'build_file'
Browse files Browse the repository at this point in the history
Type is PBXBuildFile and not PBXFileReference.
  • Loading branch information
mrackwitz authored and segiddins committed Oct 5, 2015
1 parent bf3e63c commit cb00e84
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ module Pod
@target_integrator.integrate!
target = @target_integrator.send(:native_targets).first
phase = target.frameworks_build_phase
ref = phase.files.find { |f| f.file_ref.path == 'libPods.a' }
ref.should.not.be.nil
build_file = phase.files.find { |f| f.file_ref.path == 'libPods.a' }
build_file.should.not.be.nil
end

it 'adds a Copy Pods Resources build phase to each target' do
Expand Down

0 comments on commit cb00e84

Please sign in to comment.