Update wording

This commit is contained in:
Adam Harvey
2021-01-06 00:54:08 -05:00
parent 14c76ebade
commit f9fc4f43ac
3 changed files with 3 additions and 3 deletions
@@ -170,7 +170,7 @@ describe('<ProductInsights />', () => {
}
it('should render each product panel', async () => {
const noComputeEngineCostsRgx = /There are no Compute Engine costs within this timeframe for your team's projects./;
const noComputeEngineCostsRgx = /There are no Compute Engine costs within this time frame for your team's projects./;
const { getByText } = await renderInContext(
<ProductInsights
onLoaded={jest.fn()}
@@ -109,7 +109,7 @@ describe('<ProductInsightsCard/>', () => {
aggregation: [0, 0],
change: { ratio: 0, amount: 0 },
};
const subheader = `There are no ${MockComputeEngine.name} costs within this timeframe for your team's projects.`;
const subheader = `There are no ${MockComputeEngine.name} costs within this time frame for your team's projects.`;
const rendered = await renderProductInsightsCardInTestApp(
entity,
MockComputeEngine,
@@ -132,7 +132,7 @@ export const ProductInsightsCard = ({
/>
) : (
<Typography>
There are no {product.name} costs within this timeframe for your
There are no {product.name} costs within this time frame for your
team's projects.
</Typography>
)}