From c210c12436d9792df001fa31cc246f6deee2e8cc Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 12 Feb 2020 18:40:02 +0100 Subject: [PATCH] rename http to httpuri --- tests/load.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/load.js b/tests/load.js index 0c7b4fc..27750e8 100644 --- a/tests/load.js +++ b/tests/load.js @@ -12,7 +12,7 @@ import { ModuleManager } from '../../jsOMS/Module/ModuleManager.js'; import { ReadManager } from '../../jsOMS/UI/Input/Voice/ReadManager.js'; import { VoiceManager } from '../../jsOMS/UI/Input/Voice/VoiceManager.js'; import { NotificationManager } from '../../jsOMS/Message/Notification/NotificationManager.js'; -import { Http } from '../../jsOMS/Uri/Http.js'; +import { HttpUri } from '../../jsOMS/Uri/HttpUri.js'; import { UriFactory } from '../../jsOMS/Uri/UriFactory.js'; import { ACTION_EVENTS } from '../../Web/Backend/js/global/ActionEvents.js'; @@ -41,10 +41,10 @@ export class Application { this.readManager = new ReadManager(); this.voiceManager = new VoiceManager(this); this.notifyManager = new NotificationManager(); - this.request = new Http(window.location.href); + this.request = new HttpUri(window.location.href); this.request.setRootPath( - Http.parseUrl( + HttpUri.parseUrl( document.getElementsByTagName('base')[0].href ).path );