Fix instance order

This commit is contained in:
Simon Warta 2020-02-27 23:41:37 +01:00
parent 9f44e296cd
commit b821ea786c

View File

@ -430,7 +430,7 @@ describe("CosmWasmClient", () => {
const client = new CosmWasmClient(httpUrl);
const result = await client.getContracts(1);
expect(result.length).toBeGreaterThanOrEqual(3);
const [jade, hash, isa] = result;
const [hash, isa, jade] = result;
expect(hash).toEqual({
address: "cosmos18vd8fpwxzck93qlwghaj6arh4p7c5n89uzcee5",
codeId: 1,