test: fix settings loading in api/instance backend test

With commit 44186ed (tests: remove loadSettings.js for backend tests.)
the loading of the settings in backendtests changed. One test spec
was not updated.
pull/3740/head
Christian Schröder 2020-04-14 23:44:43 +02:00 committed by muxator
parent f0fdb94eb0
commit 5537ef3950
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
const assert = require('assert');
const supertest = require(__dirname+'/../../../../src/node_modules/supertest');
const fs = require('fs');
const settings = require(__dirname+'/../../loadSettings').loadSettings();
const settings = require(__dirname+'/../../../../src/node/utils/Settings');
const api = supertest('http://'+settings.ip+":"+settings.port);
const path = require('path');