Add IOUEscrow to Hooks (#15)

This commit is contained in:
Denis Angell
2023-06-14 23:16:05 +00:00
committed by GitHub
parent e1c80b5ede
commit f4c244ec0a
17 changed files with 154 additions and 147 deletions

View File

@@ -82,12 +82,12 @@ describe('EscrowCreate', function () {
assert.throws(
() => validateEscrowCreate(escrow),
ValidationError,
'EscrowCreate: Amount must be a string',
'EscrowCreate: Amount must be an Amount',
)
assert.throws(
() => validate(escrow),
ValidationError,
'EscrowCreate: Amount must be a string',
'EscrowCreate: Amount must be an Amount',
)
})