Fix failing test
This commit is contained in:
parent
61a792ac9f
commit
68d82349dd
|
@ -9,7 +9,7 @@ describe VagrantPlugins::FTPPush::Push do
|
||||||
let(:env) { isolated_environment }
|
let(:env) { isolated_environment }
|
||||||
let(:config) do
|
let(:config) do
|
||||||
double("config",
|
double("config",
|
||||||
host: "127.0.0.1:21212",
|
host: "127.0.0.1:51234",
|
||||||
username: "sethvargo",
|
username: "sethvargo",
|
||||||
password: "bacon",
|
password: "bacon",
|
||||||
passive: false,
|
passive: false,
|
||||||
|
@ -22,7 +22,7 @@ describe VagrantPlugins::FTPPush::Push do
|
||||||
|
|
||||||
describe "#push" do
|
describe "#push" do
|
||||||
before(:all) do
|
before(:all) do
|
||||||
@server = FakeFtp::Server.new(21212, 21213)
|
@server = FakeFtp::Server.new(51234, 21213)
|
||||||
@server.start
|
@server.start
|
||||||
|
|
||||||
@dir = Dir.mktmpdir
|
@dir = Dir.mktmpdir
|
||||||
|
|
Loading…
Reference in New Issue