Skip to content

Commit

Permalink
[ML] Comment tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Apr 8, 2021
1 parent befb922 commit 20c14de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jest.mock('../color_range_legend', () => ({
}),
}));

// Mocking VegaChart to avoid a canvas element related error
// Mocking VegaChart to avoid a jest/canvas related error
jest.mock('../vega_chart', () => ({
VegaChart: () => <div data-test-subj="mlVegaChart" />,
}));
Expand Down Expand Up @@ -80,7 +80,7 @@ describe('Data Frame Analytics: <ScatterplotMatrix />', () => {
});
// should hide the loading indicator and render the wrapping options boilerplate
expect(screen.queryByTestId('mlScatterplotMatrix loaded')).toBeInTheDocument();
// should not render the scatterplot matrix.
// should render the scatterplot matrix.
expect(screen.queryByTestId('mlVegaChart')).toBeInTheDocument();
});
});
Expand Down

0 comments on commit 20c14de

Please sign in to comment.