Hopefully break build by testing for local only default server

This commit is contained in:
Michael De La Rue 2016-09-01 12:05:34 +01:00
parent ea319698aa
commit 9062c654cf

View File

@ -18,7 +18,7 @@ def test_wrong_arguments():
def test_right_arguments(run_simple):
main(["s3"])
func_call = run_simple.call_args[0]
func_call[0].should.equal("0.0.0.0")
func_call[0].should.equal("127.0.0.1")
func_call[1].should.equal(5000)
@ -26,7 +26,7 @@ def test_right_arguments(run_simple):
def test_port_argument(run_simple):
main(["s3", "--port", "8080"])
func_call = run_simple.call_args[0]
func_call[0].should.equal("0.0.0.0")
func_call[0].should.equal("127.0.0.1")
func_call[1].should.equal(8080)