Skip to content

Commit

Permalink
fmt & lint
Browse files Browse the repository at this point in the history
  • Loading branch information
xbtmatt committed Nov 1, 2023
1 parent 236cb2a commit 78b29d4
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions tests/e2e/transaction/transactionArguments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ describe("various transaction arguments", () => {
moduleObjects.push(AccountAddress.fromStringRelaxed(setupData.empty_object_2.inner));
moduleObjects.push(AccountAddress.fromStringRelaxed(setupData.empty_object_3.inner));



transactionArguments = [
new Bool(true),
new U8(1),
Expand Down Expand Up @@ -475,17 +473,9 @@ describe("various transaction arguments", () => {
describe("nested, complex arguments", () => {
it("successfully submits a function with very complex arguments", async () => {
const optionVector = new MoveOption(EXPECTED_VECTOR_STRING);
const deeplyNested3 = new MoveVector([
optionVector,
optionVector,
optionVector,
]);
const deeplyNested4 = new MoveVector([
deeplyNested3,
deeplyNested3,
deeplyNested3,
]);

const deeplyNested3 = new MoveVector([optionVector, optionVector, optionVector]);
const deeplyNested4 = new MoveVector([deeplyNested3, deeplyNested3, deeplyNested3]);

const response = await rawTransactionMultiAgentHelper(
aptos,
senderAccount,
Expand All @@ -502,6 +492,5 @@ describe("various transaction arguments", () => {
);
expect(response.success).toBe(true);
});

});
});

0 comments on commit 78b29d4

Please sign in to comment.