Update unit test to match changed mkdir command

This commit is contained in:
Adam Nelson 2020-09-04 12:51:54 +02:00
parent a606822fff
commit 45f041e33e

View File

@ -19,7 +19,7 @@ describe "VagrantPlugins::GuestWindows::Cap::RSync" do
describe ".rsync_pre" do
it 'makes the guestpath directory with mkdir' do
communicator.expect_command("mkdir -p '/sync_dir'")
communicator.expect_command("mkdir \"/sync_dir\" -force")
described_class.rsync_pre(machine, guestpath: '/sync_dir')
end
end