Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ui/src/__tests__/components/history/HistoryList.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import { renderWithRedux } from '../../../tests_utils/ComponentsTestUtils';

describe('HistoryList', () => {
it('should render', () => {
const startDate = '2025-01-20 07:51';
const endDate = '2025-01-20 07:55';
const startDate = '2026-01-20 07:51';
const endDate = '2026-01-20 07:55';
const { getByTestId } = renderWithRedux(
<HistoryList startDate={startDate} endDate={endDate} />
);
Expand Down
4 changes: 2 additions & 2 deletions ui/src/__tests__/components/history/RoleHistoryList.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import { renderWithRedux } from '../../../tests_utils/ComponentsTestUtils';

describe('RoleHistoryList', () => {
it('should render', () => {
const startDate = '2025-01-20 07:51';
const endDate = '2025-01-20 07:55';
const startDate = '2026-01-20 07:51';
const endDate = '2026-01-20 07:55';
const { getByTestId } = renderWithRedux(
<CollectionHistoryList startDate={startDate} endDate={endDate} />
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ exports[`HistoryList should render 1`] = `
data-testid="flatPicker"
placeholder="Start Date (Optional)"
type="hidden"
value="2024-10-20 07:51"
value="2025-10-20 07:51"
/>
<input
class=" form-control input"
Expand All @@ -415,7 +415,7 @@ exports[`HistoryList should render 1`] = `
data-testid="flatPicker"
placeholder="End Date (Optional)"
type="hidden"
value="2025-01-20 07:55"
value="2026-01-20 07:55"
/>
<input
class=" form-control input"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ exports[`RoleHistoryList should render 1`] = `
data-testid="flatPicker"
placeholder="Start Date (Optional)"
type="hidden"
value="2024-10-20 07:51"
value="2025-10-20 07:51"
/>
<input
class=" form-control input"
Expand All @@ -218,7 +218,7 @@ exports[`RoleHistoryList should render 1`] = `
data-testid="flatPicker"
placeholder="End Date (Optional)"
type="hidden"
value="2025-01-20 07:55"
value="2026-01-20 07:55"
/>
<input
class=" form-control input"
Expand Down
Loading