xahau-patch

This commit is contained in:
Denis Angell
2025-03-14 16:04:11 +01:00
parent 8b21c9adf6
commit d6fdad0a30
10 changed files with 17 additions and 17 deletions

View File

@@ -247,13 +247,13 @@ function NegativeUNLTest() {
}
function UNLReportTest() {
test('can serialize UNLReport', () => {
it('can serialize UNLReport', () => {
expect(encode(UNLReport.tx)).toEqual(UNLReport.binary)
})
test('can serialize UNLReport metadata', () => {
it('can serialize UNLReport metadata', () => {
expect(encode(UNLReport.tx.meta)).toEqual(UNLReport.meta)
})
test('can deserialize UNLReport metadata', () => {
it('can deserialize UNLReport metadata', () => {
expect(decode(UNLReport.meta)).toEqual(UNLReport.tx.meta)
})
}
@@ -274,7 +274,7 @@ function ticketTest() {
}
function remitTest() {
test('can serialize Remit', () => {
it('can serialize Remit', () => {
expect(encode(Remit.tx)).toEqual(Remit.binary)
})
}