Skip to content

Commit

Permalink
fix test add to create orders payload
Browse files Browse the repository at this point in the history
  • Loading branch information
deandreJones committed Feb 10, 2025
1 parent 68a1048 commit 5c24c1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Office/DefinitionLists/AllowancesList.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const info = {
requiredMedicalEquipmentWeight: 1000,
organizationalClothingAndIndividualEquipment: true,
ubAllowance: 400,
weightRestriction: 1000,
weightRestriction: 1500,
};

const initialValuesOconusAdditions = {
Expand Down Expand Up @@ -179,6 +179,6 @@ describe('AllowancesList', () => {
it('renders weight restriction', () => {
const adminRestrictedWtLoc = { ...info, adminRestrictedWeightLocation: true };
render(<AllowancesList info={adminRestrictedWtLoc} />);
expect(screen.getByTestId('weightRestriction').textContent).toEqual('1,000 lbs');
expect(screen.getByTestId('weightRestriction').textContent).toEqual('1,500 lbs');
});
});

0 comments on commit 5c24c1a

Please sign in to comment.