From 6883109d27c64886d3e48186a9107725660cd3ca Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 16 Apr 2014 13:57:01 -0700 Subject: [PATCH] Fix tests --- test/unit/vagrant/action/builtin/synced_folders_test.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/unit/vagrant/action/builtin/synced_folders_test.rb b/test/unit/vagrant/action/builtin/synced_folders_test.rb index d7969474c..f1cf09294 100644 --- a/test/unit/vagrant/action/builtin/synced_folders_test.rb +++ b/test/unit/vagrant/action/builtin/synced_folders_test.rb @@ -83,7 +83,6 @@ describe Vagrant::Action::Builtin::SyncedFolders do "other" => { hostpath: "/bar", - create: true, } } @@ -110,7 +109,6 @@ describe Vagrant::Action::Builtin::SyncedFolders do "other" => { hostpath: "/bar", - create: true, } } @@ -190,7 +188,7 @@ describe Vagrant::Action::Builtin::SyncedFolders do env[:synced_folders_config] = new_config expect(subject).to receive(:synced_folders). - with(machine, new_config, cached: false). + with(machine, config: new_config, cached: false). and_return(synced_folders) subject.call(env)