Commit 482c9589 authored by Eloy Durán's avatar Eloy Durán

[Travis] Another sort order fix.

parent 1f62fbd2
...@@ -133,7 +133,7 @@ module Pod ...@@ -133,7 +133,7 @@ module Pod
it "adds the files of the pod to the Pods project only once" do it "adds the files of the pod to the Pods project only once" do
@installer.install! @installer.install!
group = @installer.project.pods.groups.find { |g| g.name == 'Reachability' } group = @installer.project.pods.groups.find { |g| g.name == 'Reachability' }
group.files.map(&:name).should == ["Reachability.h", "Reachability.m"] group.files.map(&:name).sort.should == ["Reachability.h", "Reachability.m"]
end end
it "lists a pod only once" do it "lists a pod only once" 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