Skip to content

Commit

Permalink
underschool aged -> preschool aged
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmcdermid committed Apr 11, 2024
1 parent 05d69bf commit 2e0dafa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default defineComponent({
},
data() {
return {
rows: ['Under School Aged', 'School Aged', 'Adult', 'All Students']
rows: ['Preschool Aged', 'School Aged', 'Adult', 'All Students']
};
},
methods: {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/utils/sdc/TableConfiguration.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const STUDENT_TYPE_FILTER = Object.freeze(
value: 'isSchoolAged'
},
{
title: 'Under School Aged',
title: 'Preschool Aged',
id: 'isUnderSchoolAged',
value: 'isUnderSchoolAged'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ describe('SDC School Collection View', () => {
cy.get(selectors.fteComponent.headcountCard).should('have.length', 2);
cy.get(selectors.fteComponent.headcountCard).eq(0).find(selectors.fteComponent.headcountColumnData).should('have.length', 4);
cy.get(selectors.fteComponent.headcountCard).eq(0).find(selectors.fteComponent.headcountHeader).should('contain.text', 'Student Headcount');
cy.get(selectors.fteComponent.headcountCard).eq(0).find(selectors.fteComponent.headcountColumnData).eq(0).children('div').should('contain.text', 'Under School Aged');
cy.get(selectors.fteComponent.headcountCard).eq(0).find(selectors.fteComponent.headcountColumnData).eq(0).children('div').should('contain.text', 'Preschool Aged');
cy.get(selectors.fteComponent.headcountCard).eq(0).find(selectors.fteComponent.headcountColumnData).eq(0).children('span').should('contain.text', '0');
cy.get(selectors.fteComponent.headcountCard).eq(0).find(selectors.fteComponent.headcountColumnData).eq(1).children('div').should('contain.text', 'School Aged');
cy.get(selectors.fteComponent.headcountCard).eq(0).find(selectors.fteComponent.headcountColumnData).eq(1).children('span').should('contain.text', '3');
Expand Down

0 comments on commit 2e0dafa

Please sign in to comment.