From d217054142dee70f785fae635ef520da4e3736c9 Mon Sep 17 00:00:00 2001 From: Tiago Rodrigues Date: Fri, 22 Apr 2016 16:11:37 +0200 Subject: [PATCH] tests: Fix integration test relying on server order --- test/integration/tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/tests.js b/test/integration/tests.js index 48ba7deb7..007150e58 100644 --- a/test/integration/tests.js +++ b/test/integration/tests.js @@ -104,7 +104,7 @@ test('Gets entries with a skip parameter', t => { test('Gets entries with linked includes', t => { t.plan(5) - return client.getEntries({include: 2}) + return client.getEntries({include: 2, 'sys.id': 'nyancat'}) .then(response => { t.ok(response.includes, 'includes') t.ok(response.includes.Asset, 'includes for Assets')