Skip to content

Commit

Permalink
fix: remove async and log
Browse files Browse the repository at this point in the history
  • Loading branch information
alanhwu committed Nov 21, 2024
1 parent ec82f05 commit ffee07e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sdks/uniswapx-sdk/src/utils/order.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe("order utils", () => {
const uniswapXOrderParser = new UniswapXOrderParser();
const relayOrderParser = new RelayOrderParser();

beforeAll(async () => {
beforeAll(() => {
chainId = 1;
priorityChainId = 8453;
blockBasedChainId = 42161;
Expand Down Expand Up @@ -454,7 +454,6 @@ describe("order utils", () => {
blockBasedChainId
)
).toEqual(OrderType.Dutch_V3);
console.log(unsignedV3DutchOrder.serialize());
});
it("parses CosignedV3DutchOrder type", () => {
expect(
Expand Down

0 comments on commit ffee07e

Please sign in to comment.