diff --git a/testsuite/slurm_unit/api/manual/allocate-tst.c b/testsuite/slurm_unit/api/manual/allocate-tst.c index 9e300bc085cee7c5a92d67dd0dc4d5bc6af2a0b3..a54aeb075102536d9d88db2a232eccbd8611ab4b 100644 --- a/testsuite/slurm_unit/api/manual/allocate-tst.c +++ b/testsuite/slurm_unit/api/manual/allocate-tst.c @@ -41,7 +41,7 @@ main (int argc, char *argv[]) if (error_code) printf ("allocate error %d\n", error_code); else { - printf ("allocate nodes %s to job %u\n", "TBD", job_mesg.job_id); + printf ("allocate nodes %s to job %u\n", resp_msg.node_list, job_mesg.job_id); } job_count = 1; @@ -69,7 +69,7 @@ main (int argc, char *argv[]) break; } else { - printf ("allocate nodes %s to job %u\n", "TBD", job_mesg.job_id); + printf ("allocate nodes %s to job %u\n", resp_msg.node_list, job_mesg.job_id); } } @@ -85,7 +85,7 @@ main (int argc, char *argv[]) break; } else { - printf ("allocate nodes %s to job %u\n", "TBD", job_mesg.job_id); + printf ("allocate nodes %s to job %u\n", resp_msg.node_list, job_mesg.job_id); } } @@ -101,7 +101,7 @@ main (int argc, char *argv[]) break; } else { - printf ("allocate nodes %s to job %u\n", "TBD", job_mesg.job_id); + printf ("allocate nodes %s to job %u\n", resp_msg.node_list, job_mesg.job_id); } }