diff --git a/test/test_matrixeventprocessor.ts b/test/test_matrixeventprocessor.ts
index 7565571a805a6a0a4dd8ec250b3bf8ff8295d04f..449e75a7ccd8a6959f07ba8e62cb135f55edceff 100644
--- a/test/test_matrixeventprocessor.ts
+++ b/test/test_matrixeventprocessor.ts
@@ -148,7 +148,7 @@ describe("MatrixEventProcessor", () => {
             Chai.assert.equal(evt.author.name, "@testwithalottosayaboutitselftha");
         });
 
-        it("Should should contain the users avatar if it exists", () => {
+        it("Should contain the users avatar if it exists.", () => {
             const processor = createMatrixEventProcessor();
             const evt = processor.EventToEmbed({
                 sender: "@test:localhost",
@@ -308,14 +308,6 @@ describe("MatrixEventProcessor", () => {
                 },
             }, mxClient)).to.eventually.eq("");
         });
-        it("message without an info", () => {
-            const processor = createMatrixEventProcessor();
-            return expect(processor.HandleAttachment({
-                content: {
-                    msgtype: "m.video",
-                },
-            }, mxClient)).to.eventually.eq("");
-        });
         it("message with a large info.size", () => {
             const LARGE_FILE = 8000000;
             const processor = createMatrixEventProcessor();