Skip to content
Snippets Groups Projects
Commit 975f95e4 authored by srosse's avatar srosse
Browse files

OO-3815: fix rs in self test if score is missing of a QTI 2.1 test

parent 449a104e
No related branches found
No related tags found
No related merge requests found
......@@ -378,7 +378,7 @@ public class IQSELFCourseNode extends AbstractAccessableCourseNode implements Se
.getLastAssessmentTestSessions(courseEntry, getIdent(), referencedRepositoryEntry, assessedIdentity);
if(testSession != null) {
boolean fullyAssessed = (testSession.getFinishTime() != null || testSession.getTerminationTime() != null);
Float score = testSession.getScore().floatValue();
Float score = testSession.getScore() == null ? null : testSession.getScore().floatValue();
return new ScoreEvaluation(score, testSession.getPassed(), fullyAssessed, testSession.getKey());
}
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment