Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yshalenyk committed Jul 26, 2024
1 parent b8f306f commit 002633e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_unflatten.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def test_finish_release(mock_get_iso_now, mock_config):

curr_release = {
"field": "value1",
"tender": {},
"tender": {"id": 1},
}
curr_ocid = "1"
mapped = []
Expand All @@ -456,13 +456,15 @@ def test_finish_release(mock_get_iso_now, mock_config):
"date": "2022-01-01T00:00:00Z",
"ocid": "prefix-1",
"tag": ["tender"],
"tender": {"id": 1},
"id": generate_hash(
{
"field": "value1",
"initiationType": "tender",
"date": "2022-01-01T00:00:00Z",
"ocid": "prefix-1",
"tag": ["tender"],
"tender": {"id": 1},
}
),
}
Expand Down

0 comments on commit 002633e

Please sign in to comment.