Fix failing test on 1.8.7

This commit is contained in:
Mitchell Hashimoto 2012-12-20 22:05:05 -08:00
parent 130a602e9b
commit 5002b8d9c2
1 changed files with 4 additions and 2 deletions

View File

@ -121,9 +121,11 @@ describe Vagrant::BoxCollection do
environment.box2("bar", :ec2) environment.box2("bar", :ec2)
# Verify some output # Verify some output
results = instance.all.sort results = instance.all
results.length.should == 3 results.length.should == 3
results.should == [["foo", :virtualbox], ["foo", :vmware], ["bar", :ec2]].sort results.include?(["foo", :virtualbox]).should be
results.include?(["foo", :vmware]).should be
results.include?(["bar", :ec2]).should be
end end
it "should return V1 boxes as well" do it "should return V1 boxes as well" do