Skip to content
Snippets Groups Projects
Verified Commit 0193a73c authored by Luc Everse's avatar Luc Everse :passport_control:
Browse files

Change pipline to pipeline

parent 171323f7
Branches
Tags
2 merge requests!122AuTA 2.0 master merge,!85Change pipline to pipeline
Pipeline #180202 passed
......@@ -215,7 +215,7 @@ public class SubmissionController extends ControllerBase {
res.put("id", submission.getId());
res.put("aid", submission.getAssignmentId());
res.put("name", submission.getName());
res.put("piplineLog", submission.getPipelineLog());
res.put("pipelineLog", submission.getPipelineLog());
final var entityContainerOptional = entityRepository.findByParentIds(sid, aid);
res.put("results", entityContainerOptional.map(EntityContainer::getEntity).orElse(null));
......
......
......@@ -314,7 +314,8 @@ public class SubmissionControllerTest {
.andExpect(status().isOk())
.andExpect(jsonPath("$.errors", hasSize(0)))
.andExpect(jsonPath("$.id", equalTo(UNIQUE_SUBMISSION_ID)))
.andExpect(jsonPath("$.name", equalTo(SUBMISSION_NAME)));
.andExpect(jsonPath("$.name", equalTo(SUBMISSION_NAME)))
.andExpect(jsonPath("$.pipelineLog").exists());
}
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment