Skip to content

Commit c08a9ca

Browse files
committed
UI - fix snapshots
Signed-off-by: aporss <art.porss@yahooinc.com>
1 parent 8efedea commit c08a9ca

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

ui/src/__tests__/components/history/HistoryList.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import { renderWithRedux } from '../../../tests_utils/ComponentsTestUtils';
1919

2020
describe('HistoryList', () => {
2121
it('should render', () => {
22-
const startDate = '2025-01-20 07:51';
23-
const endDate = '2025-01-20 07:55';
22+
const startDate = '2026-01-20 07:51';
23+
const endDate = '2026-01-20 07:55';
2424
const { getByTestId } = renderWithRedux(
2525
<HistoryList startDate={startDate} endDate={endDate} />
2626
);

ui/src/__tests__/components/history/RoleHistoryList.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import { renderWithRedux } from '../../../tests_utils/ComponentsTestUtils';
1919

2020
describe('RoleHistoryList', () => {
2121
it('should render', () => {
22-
const startDate = '2025-01-20 07:51';
23-
const endDate = '2025-01-20 07:55';
22+
const startDate = '2026-01-20 07:51';
23+
const endDate = '2026-01-20 07:55';
2424
const { getByTestId } = renderWithRedux(
2525
<CollectionHistoryList startDate={startDate} endDate={endDate} />
2626
);

ui/src/__tests__/components/history/__snapshots__/HistoryList.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ exports[`HistoryList should render 1`] = `
391391
data-testid="flatPicker"
392392
placeholder="Start Date (Optional)"
393393
type="hidden"
394-
value="2024-10-20 07:51"
394+
value="2025-10-20 07:51"
395395
/>
396396
<input
397397
class=" form-control input"
@@ -415,7 +415,7 @@ exports[`HistoryList should render 1`] = `
415415
data-testid="flatPicker"
416416
placeholder="End Date (Optional)"
417417
type="hidden"
418-
value="2025-01-20 07:55"
418+
value="2026-01-20 07:55"
419419
/>
420420
<input
421421
class=" form-control input"

ui/src/__tests__/components/history/__snapshots__/RoleHistoryList.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ exports[`RoleHistoryList should render 1`] = `
194194
data-testid="flatPicker"
195195
placeholder="Start Date (Optional)"
196196
type="hidden"
197-
value="2024-10-20 07:51"
197+
value="2025-10-20 07:51"
198198
/>
199199
<input
200200
class=" form-control input"
@@ -218,7 +218,7 @@ exports[`RoleHistoryList should render 1`] = `
218218
data-testid="flatPicker"
219219
placeholder="End Date (Optional)"
220220
type="hidden"
221-
value="2025-01-20 07:55"
221+
value="2026-01-20 07:55"
222222
/>
223223
<input
224224
class=" form-control input"

0 commit comments

Comments
 (0)