Skip to content

Commit 75162c0

Browse files
author
Han
committed
update torque test #1
1 parent 7f157cd commit 75162c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_queueadapter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def test_interfaces(self):
118118
self.sge._adapter._commands.get_queue_status_command, ["qstat", "-xml"]
119119
)
120120
self.assertEqual(
121-
self.torque._adapter._commands.submit_job_command, ["qsub", "-terse"]
121+
self.torque._adapter._commands.submit_job_command, ["qsub"]
122122
)
123123
self.assertEqual(self.torque._adapter._commands.delete_job_command, ["qdel"])
124124
self.assertEqual(
@@ -170,7 +170,7 @@ def test__list_command_to_be_executed(self):
170170
with self.subTest("torque"):
171171
self.assertEqual(
172172
self.torque._adapter._list_command_to_be_executed(None, "here"),
173-
["qsub", "-terse", "here"],
173+
["qsub", "here"],
174174
)
175175
with self.subTest("torque with dependency"):
176176
self.assertRaises(

0 commit comments

Comments
 (0)