Skip to content

Commit 07b74c6

Browse files
committed
chore: fix operationReviewForm.test after updates
1 parent 8533113 commit 07b74c6

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

bciers/apps/reporting/src/tests/components/operations/OperationReviewForm.test.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,21 @@ const activities = [
7474
];
7575

7676
const regulatedProducts = [
77-
{ id: 1, name: "Product 1", unit: "BCRCT", is_regulated: true },
77+
{
78+
id: 1,
79+
name: "Product 1",
80+
unit: "BCRCT",
81+
is_regulated: true,
82+
valid_from: "2023-01-01",
83+
valid_to: "2099-01-01",
84+
},
7885
{
7986
id: 2,
8087
name: "Product 2",
8188
unit: "Tonne cement equivalent",
8289
is_regulated: true,
90+
valid_from: "2023-01-01",
91+
valid_to: "2099-01-01",
8392
},
8493
];
8594

0 commit comments

Comments
 (0)