Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
carbonrobot committed Jan 17, 2024
1 parent e7bb003 commit a9625b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/victory-line/src/victory-line.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,9 @@ describe("components/victory-line", () => {
);

const line = container.querySelector("path");
const renderedData = JSON.parse(
line!.getAttribute("data-json")!,
).map(({ t }) => t);
const renderedData = JSON.parse(line!.getAttribute("data-json")!).map(
({ t }) => t,
);

expect(renderedData).toEqual([0, 1]);
});
Expand Down

0 comments on commit a9625b4

Please sign in to comment.