From 970e112936990a85d2281251d65b477a38f5ad68 Mon Sep 17 00:00:00 2001
From: Christian Paul <christianp@matrix.org>
Date: Wed, 9 Dec 2020 16:40:00 +0100
Subject: [PATCH] RoomHandler -> MatrixRoomHandler

---
 test/test_matrixroomhandler.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/test_matrixroomhandler.ts b/test/test_matrixroomhandler.ts
index eda5360..1a9896e 100644
--- a/test/test_matrixroomhandler.ts
+++ b/test/test_matrixroomhandler.ts
@@ -26,7 +26,7 @@ import { AppserviceMock } from "./mocks/appservicemock";
 // we are a test file and thus need those
 /* tslint:disable:no-unused-expression max-file-line-count no-any */
 
-const RoomHandler = (Proxyquire("../src/matrixroomhandler", {
+const MatrixRoomHandler = (Proxyquire("../src/matrixroomhandler", {
     "./util": {
         Util: {
             DelayedPromise: Util.DelayedPromise,
@@ -119,7 +119,7 @@ function createRH(opts: any = {}) {
 
         },
     };
-    const handler = new RoomHandler(bot as any, config, bridge as any, store);
+    const handler = new MatrixRoomHandler(bot as any, config, bridge as any, store);
     return { handler, bridge };
 }
 
-- 
GitLab