diff --git a/tslib/react/test/PlotHistory.test.tsx b/tslib/react/test/PlotHistory.test.tsx index 8ad43ad3..3d121fae 100644 --- a/tslib/react/test/PlotHistory.test.tsx +++ b/tslib/react/test/PlotHistory.test.tsx @@ -26,9 +26,7 @@ describe("PlotHistory Tests", async () => { for (const study of window.mockStudies) { test(`PlotHistory (study name: ${study.name})`, () => { setup({ study, dataTestId: `plot-history-${study.id}` }) - expect( - screen.getByTestId(`plot-history-${study.id}`) - ).toBeInTheDocument() + expect(screen.getByTestId(`plot-history-${study.id}`)).toBeInTheDocument() }) } }) diff --git a/tslib/react/test/TrialTable.test.tsx b/tslib/react/test/TrialTable.test.tsx index 5a547ba1..fb2d8f7b 100644 --- a/tslib/react/test/TrialTable.test.tsx +++ b/tslib/react/test/TrialTable.test.tsx @@ -26,9 +26,7 @@ describe("TrialTable Tests", async () => { for (const study of window.mockStudies) { test(`TrialTable (study name: ${study.name})`, () => { setup({ study, dataTestId: `trial-table-${study.id}` }) - expect( - screen.getByTestId(`trial-table-${study.id}`) - ).toBeInTheDocument() + expect(screen.getByTestId(`trial-table-${study.id}`)).toBeInTheDocument() }) } })