Skip to content

Commit

Permalink
test: Remove overwriting of checksums
Browse files Browse the repository at this point in the history
  • Loading branch information
ewuerger committed Aug 26, 2024
1 parent 224b339 commit 856543a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def base_object(
model: capellambse.MelodyModel, monkeypatch: pytest.MonkeyPatch
) -> BaseObjectContainer:
work_item = data_models.CapellaWorkItem(
id="Obj-1", uuid_capella="uuid1", status="open", checksum="123"
id="Obj-1", uuid_capella="uuid1", status="open"
)
c2p_cli = cli.Capella2PolarionCli(
debug=True,
Expand Down Expand Up @@ -155,7 +155,6 @@ def base_object(
id="Obj-1",
uuid_capella="uuid1",
status="open",
checksum="123",
type="fakeModelObject",
),
),
Expand Down
3 changes: 0 additions & 3 deletions tests/test_elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,6 @@ def test_update_work_items(
title="Something",
description_type="text/html",
description=markupsafe.Markup("Test"),
checksum="123",
)
]
polarion_api_get_all_work_items = mock.MagicMock()
Expand Down Expand Up @@ -815,7 +814,6 @@ def test_update_deleted_work_item(
type="type",
uuid_capella="uuid1",
status="deleted",
checksum="123",
)
]
polarion_api_get_all_work_items = mock.MagicMock()
Expand All @@ -837,7 +835,6 @@ def test_update_deleted_work_item(
title="Something",
description_type="text/html",
description=markupsafe.Markup("Test"),
checksum="123",
)
)

Expand Down

0 comments on commit 856543a

Please sign in to comment.