diff options
Diffstat (limited to 'tests/test_policy.js')
-rw-r--r-- | tests/test_policy.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_policy.js b/tests/test_policy.js index b98c401..8214197 100644 --- a/tests/test_policy.js +++ b/tests/test_policy.js @@ -220,8 +220,8 @@ function nock_cfy_node_instances(action_timer) { return nock(dh.CLOUDIFY_URL).get(CFY_API_NODE_INSTANCES) .query(params => { console.log(action_timer.step, "get", dh.CLOUDIFY_URL, CFY_API_NODE_INSTANCES, JSON.stringify(params)); - return !!(params._include === "id,deployment_id,runtime_properties" - && params._size === "1000" && params._offset === "0"); + //return !!(params._include === "id,deployment_id,runtime_properties" + return !!(params._size === "1000" && params._offset === "0"); }) .reply(200, function(uri) { console.log(action_timer.step, "get", dh.CLOUDIFY_URL, uri); |