Skip to content

Commit

Permalink
fix unit test to use a non-default QID
Browse files Browse the repository at this point in the history
  • Loading branch information
akremin committed Aug 16, 2024
1 parent 301d390 commit f3f6ba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/desispec/test/test_workflow_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ def setUp(self):

def test_queue_info_from_qids(self):
"""Test queue_info_from_qids"""
qids = [1,10,2,5]
qids = [11,10,2,5]
qinfo = queue.queue_info_from_qids(qids, dry_run=3)
self.assertEqual(list(qinfo['JOBID']), qids)

def test_queue_state_cache(self):
"""Test queue state cache"""
# Query qids to get state into cache
qids = [1,10,2,5]
qids = [11,10,2,5]
qinfo = queue.queue_info_from_qids(qids, dry_run=3)

# check cache matches state
Expand Down

0 comments on commit f3f6ba0

Please sign in to comment.