Skip to content

Commit

Permalink
fixed enumerate loop
Browse files Browse the repository at this point in the history
  • Loading branch information
nsimakov committed Oct 29, 2024
1 parent 2227349 commit 39ac527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/scheduler/scheduler_test1.jl
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ end
6 101 2 4;
6 102 2 4]
]
for (i, job_trace) in job_traces_list
for (i, job_trace) in enumerate(job_traces_list)
sim = jobs_replay_on_resource(DataFrame(job_trace, [
"submit_time", "user_id", "nodes", "walltime"
]); nodes=10, scheduler_backfill=false, workload_done_check_freq=1)
Expand Down

0 comments on commit 39ac527

Please sign in to comment.