File disable-failing-ftp-tests.patch of Package vagrant
diff --git a/test/unit/plugins/pushes/ftp/adapter_test.rb b/test/unit/plugins/pushes/ftp/adapter_test.rb
index 93888f840..b11f25d10 100644
--- a/test/unit/plugins/pushes/ftp/adapter_test.rb
+++ b/test/unit/plugins/pushes/ftp/adapter_test.rb
@@ -72,7 +72,7 @@ describe VagrantPlugins::FTPPush::FTPAdapter do
FileUtils.rm_rf(@dir)
end
- it "uploads the file" do
+ xit "uploads the file" do
subject.connect do |ftp|
ftp.upload("#{@dir}/file", "/file")
end
@@ -80,7 +80,7 @@ describe VagrantPlugins::FTPPush::FTPAdapter do
expect(server.files).to include("file")
end
- it "uploads in passive mode" do
+ xit "uploads in passive mode" do
subject.options[:passive] = true
subject.connect do |ftp|
ftp.upload("#{@dir}/file", "/file")