diff --git a/plugins/providers/hyperv/command/sync.rb b/plugins/providers/hyperv/command/sync.rb index dcae95cb5..a1532e0cd 100644 --- a/plugins/providers/hyperv/command/sync.rb +++ b/plugins/providers/hyperv/command/sync.rb @@ -2,7 +2,7 @@ require 'optparse' require "vagrant/action/builtin/mixin_synced_folders" -require_relative "../helper" +require_relative "../sync_helper" module VagrantPlugins module HyperV diff --git a/plugins/providers/hyperv/command/sync_auto.rb b/plugins/providers/hyperv/command/sync_auto.rb index 3453e691a..d2c882200 100644 --- a/plugins/providers/hyperv/command/sync_auto.rb +++ b/plugins/providers/hyperv/command/sync_auto.rb @@ -8,7 +8,7 @@ require "vagrant/util/platform" require "listen" -require_relative '../helper' +require_relative '../sync_helper' module VagrantPlugins module HyperV diff --git a/plugins/providers/hyperv/helper.rb b/plugins/providers/hyperv/sync_helper.rb similarity index 100% rename from plugins/providers/hyperv/helper.rb rename to plugins/providers/hyperv/sync_helper.rb diff --git a/plugins/providers/hyperv/synced_folder.rb b/plugins/providers/hyperv/synced_folder.rb index 53fd65f13..64886c1c3 100644 --- a/plugins/providers/hyperv/synced_folder.rb +++ b/plugins/providers/hyperv/synced_folder.rb @@ -1,7 +1,7 @@ require "fileutils" require "vagrant/util/platform" -require_relative 'helper' +require_relative 'sync_helper' module VagrantPlugins module HyperV diff --git a/test/unit/plugins/providers/hyperv/command/sync_auto_test.rb b/test/unit/plugins/providers/hyperv/command/sync_auto_test.rb index 5682fe7f8..9c9c3decb 100644 --- a/test/unit/plugins/providers/hyperv/command/sync_auto_test.rb +++ b/test/unit/plugins/providers/hyperv/command/sync_auto_test.rb @@ -1,6 +1,6 @@ require_relative "../../../../base" -require Vagrant.source_root.join("plugins/providers/hyperv/helper") +require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper") require Vagrant.source_root.join("plugins/providers/hyperv/command/sync_auto") describe VagrantPlugins::HyperV::Command::SyncAuto do diff --git a/test/unit/plugins/providers/hyperv/command/sync_test.rb b/test/unit/plugins/providers/hyperv/command/sync_test.rb index 01f85ea20..29cdadea1 100644 --- a/test/unit/plugins/providers/hyperv/command/sync_test.rb +++ b/test/unit/plugins/providers/hyperv/command/sync_test.rb @@ -1,6 +1,6 @@ require_relative "../../../../base" -require Vagrant.source_root.join("plugins/providers/hyperv/helper") +require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper") require Vagrant.source_root.join("plugins/providers/hyperv/command/sync") describe VagrantPlugins::HyperV::Command::Sync do diff --git a/test/unit/plugins/providers/hyperv/helper_test.rb b/test/unit/plugins/providers/hyperv/sync_helper_test.rb similarity index 99% rename from test/unit/plugins/providers/hyperv/helper_test.rb rename to test/unit/plugins/providers/hyperv/sync_helper_test.rb index f3d7398c5..02b4e46dd 100644 --- a/test/unit/plugins/providers/hyperv/helper_test.rb +++ b/test/unit/plugins/providers/hyperv/sync_helper_test.rb @@ -3,7 +3,7 @@ require 'zip' require_relative "../../../base" -require Vagrant.source_root.join("plugins/providers/hyperv/helper") +require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper") describe VagrantPlugins::HyperV::SyncHelper do subject { described_class } diff --git a/test/unit/plugins/providers/hyperv/synced_folder_test.rb b/test/unit/plugins/providers/hyperv/synced_folder_test.rb index 6121f8f84..bf008384b 100644 --- a/test/unit/plugins/providers/hyperv/synced_folder_test.rb +++ b/test/unit/plugins/providers/hyperv/synced_folder_test.rb @@ -3,7 +3,7 @@ require "vagrant" require Vagrant.source_root.join("test/unit/base") require Vagrant.source_root.join("plugins/providers/hyperv/config") require Vagrant.source_root.join("plugins/providers/hyperv/errors") -require Vagrant.source_root.join("plugins/providers/hyperv/helper") +require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper") require Vagrant.source_root.join("plugins/providers/hyperv/synced_folder") describe VagrantPlugins::HyperV::SyncedFolder do