Fix failing test

This commit is contained in:
Seth Vargo 2014-12-11 11:15:24 -08:00
parent 61a792ac9f
commit 68d82349dd
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ describe VagrantPlugins::FTPPush::Push do
let(:env) { isolated_environment }
let(:config) do
double("config",
host: "127.0.0.1:21212",
host: "127.0.0.1:51234",
username: "sethvargo",
password: "bacon",
passive: false,
@ -22,7 +22,7 @@ describe VagrantPlugins::FTPPush::Push do
describe "#push" do
before(:all) do
@server = FakeFtp::Server.new(21212, 21213)
@server = FakeFtp::Server.new(51234, 21213)
@server.start
@dir = Dir.mktmpdir