core: fix final test

This commit is contained in:
Mitchell Hashimoto 2014-05-01 10:12:36 -07:00
parent 169a829cd8
commit c5b3dbbf75
1 changed files with 2 additions and 2 deletions

View File

@ -167,8 +167,8 @@ describe Vagrant::Plugin::V2::Manager do
instance.register(pB)
expect(instance.providers.to_hash.length).to eq(2)
expect(instance.providers[:foo]).to eq(["bar", {}])
expect(instance.providers[:bar]).to eq(["baz", { foo: "bar" }])
expect(instance.providers[:foo]).to eq(["bar", { priority: 5 }])
expect(instance.providers[:bar]).to eq(["baz", { foo: "bar", priority: 5 }])
end
it "provides the collection of registered provider configs" do