Skip to content

Commit

Permalink
Support node 4.x and 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscogouveia committed Mar 4, 2017
1 parent d4795e1 commit c2792b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/dataretriever.js
Expand Up @@ -95,12 +95,12 @@ experiment('RBAC internal modular information retrieval', () => {
dataRetriever.get('test-override-multiple-3:test'),
dataRetriever.get('test-override-multiple-4:test')
])
.then(([result1, result2, result3, result4]) => {
.then((results) => {

expect(result1).to.equal('test-1');
expect(result2).to.equal('test-2');
expect(result3).to.equal('test-1');
expect(result4).to.equal('test-2');
expect(results[0]).to.equal('test-1');
expect(results[1]).to.equal('test-2');
expect(results[2]).to.equal('test-1');
expect(results[3]).to.equal('test-2');
});
});

Expand Down

0 comments on commit c2792b8

Please sign in to comment.