소스 검색

Fix arrow function this ref

Lucas de Souza 5 년 전
부모
커밋
a8fc30b133
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      js/assessment/ivprogAssessment.js

+ 1 - 1
js/assessment/ivprogAssessment.js

@@ -29,7 +29,7 @@ export class IVProgAssessment {
         return this.partialEvaluateTestCase(new IVProgProcessor(validTree), t.input, t.output, name);
       });
       const testResult = partialTests.reduce((acc, curr) => acc.then(curr), Promise.resolve(0));
-      return testResult.then(total => {
+      return testResult.then(function (){
         const grade = total / this.testCases.length;
         const channel = grade == 1 ? DOMConsole.INFO : DOMConsole.ERR;
         this.writeToConsole(channel, StringTypes.MESSAGE, "test_suite_grade", grade * 100);