Skip to content

Commit

Permalink
fix wallet tests
Browse files Browse the repository at this point in the history
  • Loading branch information
twwu123 committed Dec 5, 2024
1 parent 5083399 commit dcfe559
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/mesh-transaction/test/transaction/sendAssets.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ describe("Transaction", () => {
transaction.txBuilder = txBuilderMock;
});

it("should trigger txOutDatumHashValue when recipient has datum with inline set to false", () => {
const address = wallet.getUsedAddresses()[0];
it("should trigger txOutDatumHashValue when recipient has datum with inline set to false", async () => {
const address = (await wallet.getUsedAddresses())[0];
const recipient: Recipient = {
address: address as string,
datum: {
Expand All @@ -58,8 +58,8 @@ describe("Transaction", () => {
"datum-value",
);
});
it("should trigger txOutInlineDatumValue when recipient has datum with inline set to false", () => {
const address = wallet.getUsedAddresses()[0];
it("should trigger txOutInlineDatumValue when recipient has datum with inline set to false", async () => {
const address = (await wallet.getUsedAddresses())[0];
const recipient: Recipient = {
address: address as string,
datum: {
Expand Down

0 comments on commit dcfe559

Please sign in to comment.