Skip to content

Commit

Permalink
changing description for each test vector generation method to fit th…
Browse files Browse the repository at this point in the history
…e message being built
  • Loading branch information
jiyoontbd committed Jan 24, 2024
1 parent 744976b commit 051fa0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/protocol/tests/generate-test-vectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const generateParseOrderVector = async () => {
await order.sign(did)

return {
description : 'RFQ parses from string',
description : 'Order parses from string',
input : JSON.stringify(order),
output : order.toJSON(),
error : false,
Expand All @@ -122,7 +122,7 @@ const generateParseCloseVector = async () => {
await close.sign(did)

return {
description : 'RFQ parses from string',
description : 'Close parses from string',
input : JSON.stringify(close),
output : close.toJSON(),
error : false,
Expand All @@ -141,7 +141,7 @@ const generateParseOrderStatusVector = async () => {
await orderStatus.sign(did)

return {
description : 'RFQ parses from string',
description : 'Order Status parses from string',
input : JSON.stringify(orderStatus),
output : orderStatus.toJSON(),
error : false,
Expand Down

0 comments on commit 051fa0d

Please sign in to comment.