Commit cb00e841 authored by Marius Rackwitz's avatar Marius Rackwitz Committed by Samuel Giddins

[Spec] Rename local var 'ref' to 'build_file'

Type is PBXBuildFile and not PBXFileReference.
parent bf3e63ce
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment