Skip to content

Commit b0ec227

Browse files
committed
#1650 - pls
1 parent 55997e3 commit b0ec227

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/frontend/src/tests/pages/ChangeRequestDetailPage/ProposedSolutionsList.test.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ describe('Proposed Solutions List Test Suite', () => {
6060
expect(screen.getAllByText(/Description/).length).toBe(2);
6161
expect(screen.getByText('Desc 1')).toBeInTheDocument();
6262
expect(screen.getByText('Scope Impact 1')).toBeInTheDocument();
63-
expect(screen.getByText('$11')).toBeInTheDocument();
63+
expect(screen.getByText('11')).toBeInTheDocument();
6464
expect(screen.getByText('111 weeks')).toBeInTheDocument();
6565
expect(screen.getByText('Desc 2')).toBeInTheDocument();
6666
expect(screen.getByText('Scope Impact 2')).toBeInTheDocument();
67-
expect(screen.getByText('$22')).toBeInTheDocument();
67+
expect(screen.getByText('22')).toBeInTheDocument();
6868
expect(screen.getByText('222 weeks')).toBeInTheDocument();
6969
});
7070

@@ -75,11 +75,11 @@ describe('Proposed Solutions List Test Suite', () => {
7575
expect(screen.queryAllByText('Scope Impact').length).toBe(0);
7676
expect(screen.queryByText('Desc 1')).not.toBeInTheDocument();
7777
expect(screen.queryByText('Scope Impact 1')).not.toBeInTheDocument();
78-
expect(screen.queryByText('$11')).not.toBeInTheDocument();
78+
expect(screen.queryByText('11')).not.toBeInTheDocument();
7979
expect(screen.queryByText('111 weeks')).not.toBeInTheDocument();
8080
expect(screen.queryByText('Desc 2')).not.toBeInTheDocument();
8181
expect(screen.queryByText('Scope Impact 2')).not.toBeInTheDocument();
82-
expect(screen.queryByText('$22')).not.toBeInTheDocument();
82+
expect(screen.queryByText('22')).not.toBeInTheDocument();
8383
expect(screen.queryByText('222 weeks')).not.toBeInTheDocument();
8484
});
8585

0 commit comments

Comments
 (0)