Merge pull request #21 from strongloop/fix-tests

Fix failing tests on CI
This commit is contained in:
Ryan Graham 2015-07-20 19:03:25 -07:00
commit 67cc771bb5
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ describe('RemoteConnector', function() {
remoteApp.use(loopback.rest());
remoteApp.listen(0, function() {
test.dataSource = loopback.createDataSource({
host: remoteApp.get('host'),
host: '127.0.0.1',
port: remoteApp.get('port'),
connector: loopback.Remote
});
@ -40,7 +40,7 @@ describe('RemoteConnector', function() {
remoteApp.listen(0, function() {
test.remote = loopback.createDataSource({
host: remoteApp.get('host'),
host: '127.0.0.1',
port: remoteApp.get('port'),
connector: loopback.Remote
});