lint cleanup
[websub-hub] / test / src / communication.js
index 8be92414f6777c923991910d538a806684fe53ae..3e09b3da4d48a32dd9d4e6dbca7eedb931588274 100644 (file)
@@ -709,14 +709,14 @@ describe('Communication', function () {
     it('covers claim', async function () {
       communication.db.topicFetchClaimById.resolves({
         changes: 1,
-      })
+      });
       await communication.topicFetchClaimAndProcessById(dbCtx, topicId, requestId);
       assert(communication.topicFetchProcess.called);
     });
     it('covers no claim', async function () {
       communication.db.topicFetchClaimById.resolves({
         changes: 0,
-      })
+      });
       await communication.topicFetchClaimAndProcessById(dbCtx, topicId, requestId);
       assert(!communication.topicFetchProcess.called);
     });
@@ -733,14 +733,14 @@ describe('Communication', function () {
     it('covers claim', async function () {
       communication.db.verificationClaimById.resolves({
         changes: 1,
-      })
+      });
       await communication.verificationClaimAndProcessById(dbCtx, verificationId, requestId);
       assert(communication.verificationProcess.called);
     });
     it('covers no claim', async function () {
       communication.db.verificationClaimById.resolves({
         changes: 0,
-      })
+      });
       await communication.verificationClaimAndProcessById(dbCtx, verificationId, requestId);
       assert(!communication.verificationProcess.called);
     });