Merge pull request #718 from cosmos/fix-normalizePubkey-test

Fix normalizePubkey test
This commit is contained in:
Will Clark 2021-03-23 10:33:29 +01:00 committed by GitHub
commit 94e56a6bb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,7 +88,7 @@ describe("utils", () => {
type: "tendermint/PubKeySecp256k1",
value: "A08EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQ",
};
expect(original).toEqual(original);
expect(normalizePubkey(original)).toEqual(original);
});
});
});