Skip to content

Commit 3f49d0d

Browse files
authored
Merge pull request #292
MPT-19481 update skip markers and parameter type in tests
2 parents 2377b40 + fb93d43 commit 3f49d0d

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

tests/e2e/helpdesk/parameters/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def parameter_data(short_uuid):
1313
"description": "E2E Created Helpdesk Parameter",
1414
"scope": "Case",
1515
"phase": "Request",
16-
"type": "String",
16+
"type": "SingleLineText",
1717
"multiple": False,
1818
"constraints": {
1919
"required": False,

tests/e2e/helpdesk/parameters/test_async_parameters.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
from mpt_api_client.exceptions import MPTAPIError
66
from mpt_api_client.resources.helpdesk.parameters import Parameter
77

8-
pytestmark = [
9-
pytest.mark.flaky,
10-
pytest.mark.skip(reason="Skipped per MPT-18373 request"),
11-
]
8+
pytestmark = [pytest.mark.flaky, pytest.mark.skip(reason="Unskip after MPT-19967 fixed")]
129

1310

1411
async def test_get_parameter(async_mpt_ops, async_created_parameter):

tests/e2e/helpdesk/parameters/test_sync_parameters.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
from mpt_api_client.exceptions import MPTAPIError
66
from mpt_api_client.resources.helpdesk.parameters import Parameter
77

8-
pytestmark = [
9-
pytest.mark.flaky,
10-
pytest.mark.skip(reason="Skipped per MPT-18373 request"),
11-
]
8+
pytestmark = [pytest.mark.flaky]
129

1310

1411
def test_get_parameter(mpt_ops, created_parameter):

0 commit comments

Comments
 (0)