From 423e83d4eba147ee123aeafef24e918785f593ef Mon Sep 17 00:00:00 2001 From: Bill Barman Date: Fri, 23 Nov 2018 09:30:44 +0800 Subject: [PATCH] fix lint --- test/libDDO/DDO.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/libDDO/DDO.test.ts b/test/libDDO/DDO.test.ts index 2ab4428..cbcbed0 100644 --- a/test/libDDO/DDO.test.ts +++ b/test/libDDO/DDO.test.ts @@ -93,12 +93,12 @@ describe("libDDO", () => { } const publicKey = ddo.getPublicKey(4) assert(publicKey) - + const publicKeyId = ddo.getPublicKey(did + "#keys=5") assert(publicKeyId) - assert(publicKeyId.id == publicKey.id) + assert(publicKeyId.id === publicKey.id) }) - + it("should find a service in the ddo", async () => { const ddo = new DDO(jsonDDO) assert(ddo)