Skip to content

Commit

Permalink
fix small issue in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
jleni committed Oct 27, 2019
1 parent f603ecc commit 824116c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/basic.ispec.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,6 @@ test("sign_invalid", async () => {
const responseSign = await app.sign(path, invalidMessage);

console.log(responseSign);
expect(responseSign.return_code).toEqual(0x6a80);
expect(responseSign.error_message).toEqual("JSON Missing account_number");
expect(responseSign.return_code).toEqual(0x6984);
expect(responseSign.error_message).toEqual("Data is invalid : JSON Missing account number");
});

0 comments on commit 824116c

Please sign in to comment.