Apply capitalization guidelines - iteration 4 (#12343) (#12450)

This commit is contained in:
Michael S. Molina
2021-01-22 15:11:38 -03:00
committed by Ville Brofeldt
parent 5e4ce48ccf
commit f659d66fee
11 changed files with 38 additions and 38 deletions

View File

@@ -109,7 +109,7 @@ describe('FiltersConfigModal', () => {
await clickCancel();
expect(onCancel.mock.calls).toHaveLength(0);
expect(wrapper.find(Alert).text()).toContain(
'Are you sure you want to cancel? "New Filter" will not be saved.',
'Are you sure you want to cancel? "New filter" will not be saved.',
);
});
@@ -119,7 +119,7 @@ describe('FiltersConfigModal', () => {
await clickCancel();
expect(onCancel.mock.calls).toHaveLength(0);
expect(wrapper.find(Alert).text()).toContain(
'Are you sure you want to cancel? "New Filter" and "New Filter" will not be saved.',
'Are you sure you want to cancel? "New filter" and "New filter" will not be saved.',
);
});
});