Update unit test to match fix

This commit is contained in:
Tim Aslat 2017-05-18 16:06:27 +09:30
parent 630858b9a8
commit 7f675d723c
1 changed files with 1 additions and 1 deletions

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 '/sync_dir'")
communicator.expect_command("mkdir -p '/sync_dir'")
described_class.rsync_pre(machine, guestpath: '/sync_dir')
end
end