Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dydxwill committed May 21, 2024
1 parent aa5ab02 commit 52a43d0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,14 @@ describe('fills-controller#V4', () => {
// in descending order.
expect(response.body.fills).toHaveLength(2);
expect(response.body.fills).toEqual(
expect.arrayContaining([
[
expect.objectContaining({
...expected[0],
}),
expect.objectContaining({
...expected[1],
}),
]),
],
);

response = await sendRequest({
Expand All @@ -203,14 +203,14 @@ describe('fills-controller#V4', () => {
// Page is specified, so fills should be sorted by eventId in ascending order.
expect(response.body.fills).toHaveLength(2);
expect(response.body.fills).toEqual(
expect.arrayContaining([
[
expect.objectContaining({
...expected[1],
}),
expect.objectContaining({
...expected[0],
}),
]),
],
);
});

Expand Down

0 comments on commit 52a43d0

Please sign in to comment.