From debc0d3af8d4c2246aa94d5359f256b742821eb8 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Thu, 15 Jun 2023 11:55:42 +0200 Subject: [PATCH] Update backend/src/apis/IotaConnector.test.ts Co-authored-by: Moriz Wahl --- backend/src/apis/IotaConnector.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/apis/IotaConnector.test.ts b/backend/src/apis/IotaConnector.test.ts index 69606b13a..9ef8bc088 100644 --- a/backend/src/apis/IotaConnector.test.ts +++ b/backend/src/apis/IotaConnector.test.ts @@ -18,7 +18,7 @@ describe('apis/IotaConnector/enabled', () => { const messageString = 'Hello World - ' + now.toString() const messageHexString = Buffer.from(messageString, 'utf8').toString('hex') const indexHexString = Buffer.from(CONFIG.IOTA_COMMUNITY_ALIAS, 'utf8').toString('hex') - it('send hello world message to iota tangle', async () => { + it('sends hello world message to iota tangle', async () => { const iotaMessage = await sendDataMessage(messageString) expect(iotaMessage).not.toBeNull() if (iotaMessage) {