Change tests to use default server port of 5000.

This commit is contained in:
Steve Pulec 2017-03-12 21:04:19 -04:00
commit cda553abfb
9 changed files with 12 additions and 12 deletions

View file

@ -1,6 +1,6 @@
var AWS = require('aws-sdk');
var s3 = new AWS.S3({endpoint: "http://localhost:8086"});
var s3 = new AWS.S3({endpoint: "http://localhost:5000"});
var myBucket = 'my.unique.bucket.name';
var myKey = 'myBucketKey';