Skip to content

Commit 9382763

Browse files
committed
Fix tests
1 parent 20fad3c commit 9382763

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tests/unit/test_plugin.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ def test_pytest_addoption_adds_correct_ini_file_arguments():
235235
expected_argument_names = (
236236
"rp_launch",
237237
"rp_launch_id",
238+
"rp_launch_uuid",
238239
"rp_launch_description",
239240
"rp_project",
240241
"rp_log_level",
@@ -295,6 +296,7 @@ def test_pytest_addoption_adds_correct_command_line_arguments():
295296
"--reportportal",
296297
"--rp-launch",
297298
"--rp-launch-id",
299+
"--rp_launch_uuid",
298300
"--rp-launch-description",
299301
"--rp-project",
300302
"--rp-log-level",
@@ -308,8 +310,8 @@ def test_pytest_addoption_adds_correct_command_line_arguments():
308310
"--rp-thread-logging",
309311
"--rp-launch-uuid-print",
310312
"--rp-launch-uuid-print-output",
311-
'--rp-launch-attributes',
312-
'--rp-tests-attributes'
313+
"--rp-launch-attributes",
314+
"--rp-tests-attributes",
313315
)
314316
mock_parser = mock.MagicMock(spec=Parser)
315317
mock_reporting_group = mock_parser.getgroup.return_value

0 commit comments

Comments
 (0)