From 6ef6d9fa1a2da4baa1b124d35b4fee18ba97eefd Mon Sep 17 00:00:00 2001 From: Alan Plum Date: Thu, 16 Jun 2016 11:06:50 +0200 Subject: [PATCH] Use an actual example IP in test-utils --- js/server/modules/@arangodb/foxx/test-utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/server/modules/@arangodb/foxx/test-utils.js b/js/server/modules/@arangodb/foxx/test-utils.js index 4785aeea18..1343a3c608 100644 --- a/js/server/modules/@arangodb/foxx/test-utils.js +++ b/js/server/modules/@arangodb/foxx/test-utils.js @@ -32,11 +32,11 @@ exports.createNativeRequest = function (opts) { headers: opts.headers || {}, cookies: opts.cookies || {}, server: opts.server || { - address: '127.0.0.1', + address: '198.51.100.1', port: opts.port || 8529 }, client: opts.client || { - address: '127.0.0.1', + address: '203.0.113.1', port: 33333 } };