Fix normalizePubkey test

Before, the unit under test (normalizePubkey) was not called.
This commit is contained in:
Simon Warta 2021-03-22 10:21:36 +01:00
parent ac3d2b3e3b
commit f3491734e7

View File

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