Commit 75bc9267 authored by Eloy Durán's avatar Eloy Durán

Merge pull request #1071 from orta/master

Englisherizer - fix a single case of imperfect english
parents 6c568711 2672f3f9
...@@ -128,7 +128,7 @@ module Pod ...@@ -128,7 +128,7 @@ module Pod
# #
def warn_about_empty_podfile def warn_about_empty_podfile
if podfile.target_definitions.values.all?{ |td| td.empty? } if podfile.target_definitions.values.all?{ |td| td.empty? }
UI.warn "[!] The Podfile does not contain any dependency." UI.warn "[!] The Podfile does not contain any dependencies."
end end
end end
......
...@@ -47,7 +47,7 @@ module Pod ...@@ -47,7 +47,7 @@ module Pod
it "warns if the podfile does not contain any dependency" do it "warns if the podfile does not contain any dependency" do
Podfile::TargetDefinition.any_instance.stubs(:empty?).returns(true) Podfile::TargetDefinition.any_instance.stubs(:empty?).returns(true)
@integrator.integrate! @integrator.integrate!
UI.warnings.should.include?('The Podfile does not contain any dependency') UI.warnings.should.include?('The Podfile does not contain any dependencies')
end end
end end
......
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