Skip to content

Commit

Permalink
The test_str_list wasn't really a str_list fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeltrankyl committed Jan 8, 2025
1 parent 3b0fd70 commit fb960fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/test_job_pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def test_adjust_new_parameters(test_packed):
(['test_list', 'test_list2'], "both", ['test_list', 'test_list2']),
("test_str", "both", ["test_str"]),
(['test_list', 'test_list2'], "current_directive", ['test_list', 'test_list2']),
(['test_str_list', 'test_str_list2'], "job", ['test_str_list', 'test_str_list2']),
("['test_str_list', 'test_str_list2']", "job", ['test_str_list', 'test_str_list2']),
], ids=["Test str - platform", "test_list - platform", "test_list - job", "test_str - job", "test_list - both", "test_str - both", "test_list - job - current_directive", "test_str_list - current_directive"])
def test_custom_directives(tmpdir, custom_directives, test_type, result_by_lines, mocker, autosubmit_config):
file_stat = os.stat(f"{tmpdir.strpath}")
Expand Down

0 comments on commit fb960fd

Please sign in to comment.