Skip to content

Commit

Permalink
Fix two more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
EvaBardou committed Jul 21, 2023
1 parent fa6348b commit 4420f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ def test_perf_data(test_perf_signature, eleven_jobs_stored):
# for making things easier, ids for jobs
# and push should be the same;
# also, we only need a subset of jobs
perf_jobs = th_models.Job.objects.filter(pk__in=range(7, 11)).order_by('push__time').all()
perf_jobs = th_models.Job.objects.filter(pk__in=range(7, 11)).order_by('push__time', 'id').all()

for index, job in enumerate(perf_jobs, start=1):
job.push_id = index
Expand Down

0 comments on commit 4420f95

Please sign in to comment.